/** Script for opening gallery-pages */
function openGallery ( sTrack, iSerie, iStart ) {

	var vUrl = "http://lycos.spray.se/cgi-bin/nph-bounce?"+sTrack+"|http://galleri.spray.se/galleri.aspx?seriesid=" + iSerie;
	if (iStart)
		vUrl = vUrl + "&picno=" + (iStart-1)
	vUrl = vUrl + "&OrgUrl=" + escape(document.location.href.substr(0,document.location.href.indexOf("/", 7) ) );

	var leftpos = (window.screen.availWidth/2) - (900/2);
	var toppos = (window.screen.availHeight/2) - (603/2);
	var newwindow = window.open(vUrl,'Gallery','scrollbars=no,toolbar=no,directories=no,menubar=no,resizable=no,status=no,width=900,height=603,leftmargin=0,topmargin=0,top='+toppos+',left='+leftpos+',screenY='+toppos+',screenX='+leftpos);


}