
	launchWallpaper = function(wallpaper) {	
		
		NewWindow=window.open("../wallpaper_frame.asp?FilePrefix="+wallpaper,'newWin','width=800,height=600,left=0,top=0,toolbar=Yes,location=No,scrollbars=Yes,status=No,resizable=Yes,fullscreen=No');
		moveToX=(window.screen.availWidth-800)/2;
		moveToY=(window.screen.availHeight-600)/2;
		if(!document.all){
			NewWindow.moveTo(moveToX,moveToY);
		}
		NewWindow.focus();
	} 
	

	launchPrivacy = function(){
		NewWindow=window.open("privacy.htm",'newWin','width=550,height=529,left=0,top=0,toolbar=Yes,location=No,scrollbars=Yes,status=No,resizable=No,fullscreen=No');
		moveToX=0;
		moveToY=0;
		if(!document.all){
			NewWindow.moveTo(moveToX,moveToY);
		}
		NewWindow.focus();
	}

	launchTerms = function(){
		NewWindow=window.open('terms.htm','newWin','width=550,height=529,left=0,top=0,toolbar=Yes,location=No,scrollbars=Yes,status=No,resizable=No,fullscreen=No');
		moveToX=0;
		moveToY=0;
		if(!document.all){
			NewWindow.moveTo(moveToX,moveToY);
		}
		NewWindow.focus();
	}