function popwin(FILE,WIDTH,HEIGHT){
	var screenWidth = screen.width;
	var left = screenWidth - WIDTH;
	window.open(FILE,"","width="+WIDTH+",height="+HEIGHT+",menubar=0,resizable=1,scrollbars=1, status=0,titlebar=0,toolbar=0,left="+left+",top=50");
	window.name="main";
}
function popcart(FILE,WIDTH,HEIGHT){
	window.open(FILE,"","width="+WIDTH+",height="+HEIGHT+",menubar=0,resizable=1,scrollbars=1, status=0,titlebar=0,toolbar=0,left=125,top=100");
	window.name="main";
}
