// JavaScript Document
var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=700,width=630,resizable=yes,scrollbars=yes,toolbar=no,status=yes');
	if (window.focus) {newwindow.focus()}
	if (newwindow.opener == null) newwindow.opener = self;
}
function pricerequest(title,image,size,type){
		location.href  = "store.php?title="+title+"&image="+image+"&size="+size+"&type="+type;
}