/* window.js*/

/*------- wallpaper popup -------*/
function popShow(src,width,height,top,left){
	document.getElementById('pop').style.visibility='visible';
	document.getElementById('pop').style.background='url('+ src +') no-repeat';
	document.getElementById('pop').style.width= width + 'px';
	document.getElementById('pop').style.height= height + 'px';
	document.getElementById('pop').style.top= top + 'px';
	document.getElementById('pop').style.left=left + 'px';
}

function popHide(){
	document.getElementById('pop').style.visibility='hidden';
}

// dl01 open
function dl_wp01(url){
	var win;
	win=window.open(url,"icon","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=740,height=400");
	win.focus();
}
// dl02 open
function dl_wp02(url){
	var win;
	win=window.open(url,"icon","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=740,height=540");
	win.focus();
}
