/* 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';
}

// open_win01
function open_win01(url){
	var win;
	win=window.open(url,"herbalclear","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=660,height=780");
	win.focus();
}

// open_win02
function open_win02(url){
	var win;
	win=window.open(url,"herbalclear","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=660,height=620");
	win.focus();
}