//window open method
function openWin(wUrl , wName , Width , Height , Resize , Status , Scroll){
wOption = "toolbar=no,location=no,directories=no,status=" + Status +",menubar=no,scrollbars=" + Scroll +",resizable=" + Resize +",width=" + Width + ",height=" + Height + ",left=";
w = window.open(wUrl,wName,wOption);
w.focus();
}

function openOption(url){
	openWin(url , "option" , "540" , 500 , 1 , 1 , 1);
}
