function downloadPDF(e){
	//location.href('getfile.php?file=downloads/pdf/'+ e +'.pdf');
	window.location.href=('dl.asp?f=downloads/pdf/'+ e +'.pdf');
}
function downloadWallpaper(e,s){
	//location.replace('getfile.php?file=downloads/wallpaper/'+ e);	
	window.location.href=('dl.asp?f=downloads/wallpaper/'+ e +'.jpg');	
}
function boek(){

 newWindow("/cover.html",632,324,'boek','toolbar=no,status=no,resizable=no,scrollbars=no');
 //return false;
}
function newWindow(url,width,height,name,props){
  if(!props){
  	var properties = "width="+width+",height="+height+",toolbar=no,status=no,resizable=yes,scrollbars=yes";
 }else{
   var properties = "width="+width+",height="+height+","+props;
 }
  	var screenY = window.screen.availHeight;
  	var screenX = window.screen.availWidth;
  	var leftvar = Math.round((screenX - width) / 2);
  	var rightvar = Math.round((screenY - height) / 2)-200;
  	properties += ",left=" + leftvar +",top=" + rightvar;
 
	popupHandle = window.open(url,name, properties);
	setTimeout('popupHandle.focus();',250);
}