
function popUp(prodID) 
{
	var popURL = "/product_pop.php?id="+prodID;

	var prodPop = window.open(popURL, 'product', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,xresizable=0,width=400,height=300,left = 200,top = 200');

	prodPop.focus();
}


function popupWindow(popUrl,popWidth,popHeight,popTop,popLeft){
 
var popWindow = window.open(popUrl, 'popup', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,xresizable=0,width=' + popWidth + ',height=' + popHeight + ',left=' + popLeft + ',top=' + popTop);
popWindow.focus();
 
}