function loadMyShopPage(){var sessionId="";var clusterId="";/*
 * @(#)/views/myshop.js	1.0 5/mar/2008
 *
 * Copyright 2000-2008(c) MijnWinkel B.V. Teylingerweg 51, Vogelenzang,
 * South Holland, NL-2114EH, The Netherlands All rights reserved.
 *
 * This software is provided "AS IS," without a warranty of any kind. ALL
 * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
 * INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
 * PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND
 * ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES OR LIABILITIES
 * SUFFERED BY LICENSEE AS A RESULT OF  OR RELATING TO USE, MODIFICATION
 * OR DISTRIBUTION OF THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL
 * SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
 * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE
 * DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY,
 * ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS
 * BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
 *
 * You acknowledge that Software is not designed, licensed or intended
 * for use in the design, construction, operation or maintenance of any
 * nuclear facility.
 */
function Cooky(){
	var me=this;
	me.update=function(n,s,t){
		if((t+"")=="")document.cookie=n+"= "+s+"; path=/";
		else{
			var e=new Date();
			if(t!=null)e.setTime(e.getTime()+(1000*60*t));
			else e.setMonth(e.getMonth()+1);
			document.cookie=n+"= "+s+"; expires="+e.toGMTString()+"; path=/"
		}
	};
	me.remove=function(n){document.cookie=n+"=; expires=Thu, 01-Jan-70 00:00:01 GMT; path=/"};
	me.read=function(name){
		var r="*",i=0,dc=document.cookie,v;
		name+="=";
		while(i<dc.length){
			var n=i+name.length;
			if(dc.substring(i,n)==name){
				var l=dc.indexOf(";",n);
				if(l==-1)l=dc.length;
				r=dc.substring(n,l);
				break;
			}
			i=dc.indexOf(" ",i)+1;
			if(i==0)break;
		}return r
	};
	me.enabled=function(){
		var b,n="myshp";
		me.update(n,"1");
		b=me.read(n)=="1";
		me.remove(n);
		return b;
	};
}
var cky=new Cooky();


var clusId=cky.read("myshp_clusid");
if(clusId=="*"){
	cky.update("myshp_clusid",clusterId,30);
}
else clusterId=clusId;


function getSessionId(){
	var sid="";
	if(clusterId!=null){
		var id=clusterId.split("|");
		if(id!=null){
			sessionId=id[0];
			sid=";jsessionid="+sessionId+"?__stateless="+clusterId+"&";
		}
	}
	//alert(sid);
	return sid; 
}

var frm=window.frames['myshop'];if(frm)frm.document.location='http://www.mijnwinkel.nl/shop304700/productlist1/'+getSessionId()+'categorie=iets';}