
function WinOpen(url)
{
	x = 840;
	y = 600;
	l = (screen.width-x)/2;
	t = 50;
	window.open(url,'w' + Math.round(Math.random()*1000),'status=yes,width=' + x + ',height=' + y + ',left=' + l + ',top=' + t + ',toolbar=no,menubar=no,location=no,scrollbars=yes');
}

function GalleryOpen(id)
{
	x = 760;
	y = 550;
	l = (screen.width-x)/2;
	t = 50;
	window.open("gallery.aspx?id="+id,'w' + Math.round(Math.random()*1000),'status=yes,width=' + x + ',height=' + y + ',left=' + l + ',top=' + t + ',toolbar=no,menubar=no,location=no,scrollbars=yes');
}


