//Pop Up Window
var pop = null;
	function popIt(URL, myWidth, myHeight){
		LeftPosition = (screen.width) ? (screen.width-myWidth)/2 : 0;
		TopPosition = (screen.height) ? (screen.height-myHeight)/2 : 0;
		specs ='height='+myHeight+',width='+myWidth+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,resizable=yes,toolbar=no, menubar=no'
		pop = window.open(URL,"StoreInfo",specs);
		pop.focus();
	}
