
function setCookie(){
	document.cookie="toyotaSubscripe=true";
}
function getCookie(c_name){
	if (document.cookie.length>0){
		c_start=document.cookie.indexOf(c_name + "=");
		if (c_start!=-1){
			c_start=c_start + c_name.length+1;
			c_end=document.cookie.indexOf(";",c_start);
			if (c_end==-1) c_end=document.cookie.length;
			return unescape(document.cookie.substring(c_start,c_end));
		}
	}
	return false;
}
if(!getCookie("toyotaSubscripe")){
	var winW;
	if (parseInt(navigator.appVersion)>3) {
		if (navigator.appName=="Netscape") {
			winW = window.innerWidth;
			winH = window.innerHeight;
		}
		if (navigator.appName.indexOf("Microsoft")!=-1) {
			winW = document.body.offsetWidth;
			winH = document.body.offsetHeight;
		}
	}
	//document.body.innerHTML = document.body.innerHTML + "<iframe src=\"http://screenbooster.dk/toyota/iFrame.html\" marginheight=\"0\" marginwidth=\"0\" allowtransparency=\"true\" frameborder=\"0\" height=\"100%\" width=\"100%\" scrolling=\"yes\" ></iframe>";
	document.body.innerHTML = document.body.innerHTML + "<iframe style=\"position: absolute; z-index: 100000; top: 130px; left: " + (winW/2+180) + "px; display: block !important; width: " + (winW-(winW/2+200)) + "px;\" src=\"http://screenbooster.dk/toyota/iFrame.html\" marginheight=\"0\" marginwidth=\"0\" allowtransparency=\"true\" frameborder=\"0\" height=\"100%\" scrolling=\"no\" ></iframe>";
}
