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=no,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 NewWindow(url, windowName, w, h, scroll) {
	var winl = (screen.width - 600) / 2;
	var wint = (screen.height - 400) / 2;
	winprops = 'height='+400+',width='+600+',top='+wint+',left='+winl+',scrollbars=no,resizable';
	win = window.open(url, windowName, winprops);
	if (parseInt(navigator.appVersion) >= 4) { 
		win.window.focus(); 
	}
}

