function launch(newURL, newName, newFeatures, orgName) {
	var remote = open(newURL, newName, newFeatures);
	if (remote.opener == null)
		remote.opener = window;
		remote.opener.name = orgName;
	return remote;
}
function getDetailsWindow(content) {
	myRemote = launch(content, "getDetailsWindow", "height=425,width=600,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=1,resizable=1,scrollbars=1,status=0,toolbar=0,left=200,top=200", "window.frames.profile"); 
	myRemote.focus();
}
function printCartWindow(content) {
	myRemote = launch(content, "printCartWindow", "height=550,width=700,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=1,resizable=1,scrollbars=1,status=0,toolbar=0,left=200,top=200", "window.frames.profile"); 
	myRemote.focus();
}
function cookieWindow(content) {
	myRemote = launch(content, "cookieWindow", "height=10,width=10,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0,left=0,top=0", "window.frames.profile"); 
     muRemote.blur();
}


