<!--
var bookmarktitle="Acez.com - Download Free screen savers"
var bookmarkurl="http://www.acez.com"

var maincookie = "AcezPop0045";

var clickEmail=0;

function previewScreenSaver(location,w,h){
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	var winprops ='height='+h+',width='+w+',top='+wint+',left='+winl+',toolbar=no,menubar=no,location=no,scrollbars=yes';
	window.open(location,'',winprops);
}

function tellfriendScreenSaver(loc,w,h){	
	var nw;
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	var winprops ='height='+h+',width='+w+',top='+wint+',left='+winl+',toolbar=no,menubar=no,location=no,scrollbars=yes';
	nw = window.open(loc,'tell',winprops);	
}

function popUnder(loc,w,h){
	var win2;
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;	
	var winprops ='height='+h+',width='+w+',top='+wint+',left='+winl+',toolbar=no,menubar=no,resizable=no,location=no,scrollbars=no';
	win2=window.open(loc,'',winprops);
	win2.blur()
	window.focus()	
}

function subscribe(form){
	var w = 650;
	var h = 550;
	var sub;
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	var winprops ='height='+h+',width='+w+',top='+wint+',left='+winl+',toolbar=no,menubar=no,location=no,scrollbars=yes';
	
	var sEmail = form.email.value;
	if (sEmail == "") {
		alert("You forgot the email address. Please enter a valid email address to continue. Thanks");
		return false;
	} else if (sEmail.indexOf("@") < 0) {
		alert("You are missing '@' in your email address. Please enter a valid email address to continue. Thanks");
		return false;
	} else if (sEmail.indexOf(".") < 0) {
		alert("You are missing '.' in your email address. Please enter a valid email address to continue. Thanks");
		return false;
	} else {
		sub = window.open('newsletter.php','email',winprops);
		sub.focus();
		return true;
	}
}

function setCookie(NameOfCookie, value, expirehours){
	var ExpireDate = new Date ();
	ExpireDate.setTime(ExpireDate.getTime() + (expirehours * 3600 * 1000));
	document.cookie = NameOfCookie + "=" + escape(value) +
	((expirehours == null) ? "" : "; expires=" + ExpireDate.toGMTString()) +
	"; path=/;" ;
}

function screen_saver_link(url){
	document.location.href = "http://www.grabfreewallpaper.com/celebrity_wallpaper/celebrity_wallpaper.htm" + url;
}

function displayScreenSaver(){}

function addbookmark(){
	  if (document.all){
	  	window.external.AddFavorite(bookmarkurl,bookmarktitle)
	  } else if (window.sidebar){
	  	window.sidebar.addPanel(bookmarktitle, bookmarkurl,"");
	  }
}


function goNoWhere(){}


//-->