// display decision alert box
function myCP(){
	w = 775;
	h = 550;
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=0';
	win = window.open("mycp.php", "myCP", winprops);
	if (parseInt(navigator.appVersion) >= 4) { 
		win.window.focus(); 
	} 
}
function decision(message, url){
	if(confirm(message)) location.href = url;
}

function removeConfirm(url) {
	con = confirm("Are you sure you want to remove this product from the store?");
	if(con==true) {
		document.location=url;
	}
}

// open browser window
function openPopUp(url, windowName, w, h, scrollbar) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scrollbar ;
	win = window.open(url, windowName, winprops);
	if (parseInt(navigator.appVersion) >= 4) { 
		win.window.focus(); 
	} 
}