function prodwin(id) {
	var width = 500;
	var height = 350;
	var left = (screen.width-width)/2;
	var top = (screen.height*0.8-height)/2;
		
	newWin = window.open("product.asp?xPRODUCTid="+id+"", "info", "width="+width+",height="+height+",scrollbars=yes,toolbar=no,location=no,directories=no,resizable=no,status=no,menubar=no,screenX=100,screenY=100, left="+left+", top="+top);
}

function clearme(el) {
	if (el.defaultValue==el.value) el.value=""
}





function launchwindow(xwindow, xwidth, xheight) { 
window.open(xwindow, "", "resizable=1,HEIGHT="+xheight+",WIDTH="+xwidth+"");
}
