function GetShopPage() {
	//alert("GetShopPage()");
	cookieCheck();
	var iStart = document.cookie.indexOf("shoppage=") + 9;
	if(document.cookie.indexOf("shoppage=") >= 0 && iStart >= 0) {
		var sTail = document.cookie.substr(iStart);
		var iEnd  = sTail.indexOf(";")
		if(iEnd > 0)
			sTail = sTail.substr(0, iEnd);
		document.write(" > " + sTail);
	}
}

   function openForm(url, nimi) {
    var childHandle;
	var handle =openWindow(url, nimi, 750, 450);
	handle.focus();
	childHandle = handle;
	return false;
}	
	function openWindow(url, nimi, width, height) {
    var handle = window.open(url, nimi, "width="+width+",height="+height+",resizable=no,toolbar=no,status=no,location=no,titlebar=no,scrollbars=1");
    if (!handle.opener) handle.opener = self;
    childHandle = handle;
    return handle;
}

function cookieCheck(){
	//alert("cookieCheck()");
    var url,iii,ss;
    url=self.location;
    iii=parseInt(url.toString().length.toString());
    ss=url.toString().substring(iii-12,iii);
    if (ss=='default.aspx'|ss=='kirjakauppa/'|ss=='uutstuotteet'){ document.cookie = "shoppage=Uutuustuotteet";};
    if (ss=='tarjtuotteet'){ document.cookie = "shoppage=Tarjoustuotteet";};
}
