function openWin(urlNum){
	leftVal = (screen.width - 720) / 2;
	topVal = (screen.height - 500) / 2;

	if(urlNum==0){
		url='../privacy.html';
	}else if(urlNum==1){
		url='../terms.html';
	}
	window.open(url, 'Coke','width=720,height=500,resizable=yes,scrollbars=yes,status=no,menubar=no,location=no,left='+ leftVal +',top='+ topVal).focus();
}

function download(file,type){
	if(type==0){
		url='../downloads/wallpapers/'+file;
		w=680;
		h=420;
	}else{
		url='../downloads/screensavers/'+file;
		w=300;
		h=200;
	}
	window.open(url, 'Fun','width='+ w +',height='+ h +',resizable=yes,scrollbars=yes,status=no,menubar=no,location=no,left=20,top=20').focus();
}

function undertaking(){
	leftVal = (screen.width - 805) / 2;
	topVal = (screen.height - 420) / 2;
	window.open('../undertaking/index.html', 'UNDERTAKING','width=805,height=420,resizable=yes,scrollbars=no,status=no,menubar=no,location=no,left='+ leftVal +',top='+topVal).focus();
}