function launchPurchaseWindow(url) {
   launchPurchaseWindow(url, 'purchase');
}

function launchPurchaseWindow(url, name) {
   winSet = "toolbar=no,location=yes,directories=no,status=yes,scrollbars=yes,menubar=yes,resizable=yes";
   mywnd = window.open(url, name, winSet);
   mywnd.focus();
}

function launchpopup(url, name, width, height) {
   launchpopupscroll(url, name, width, height,"yes");
}

function launchpopupscroll(url, name, width, height,scroll) {
   winSet = "toolbar=no,location=no,directories=no,menubar=no,scrollbars="+scroll+",resizable=no";
   winSet += ",width="+width +",height="+height+",left="+(screen.availWidth-width)/2+",top="+(screen.availHeight-height)/2;
   mypopwnd = window.open(url, name, winSet);
   if (mypopwnd){
	   mypopwnd.focus();
   }
}

function launchwindow(url, target) {
   mywnd = window.open(url, target,'');
}

