//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);
}

// Full Screen
function FullScreen(url, name){

	var newwindow;

	newwindow = window.open(url, name, "resizable=yes, scrollbars=yes, menubar=yes, toolbar=yes, location=yes, status=yes, width=" + window.screen.width + ", height=" + window.screen.height);
	newwindow.moveTo(0,0);
	newwindow.focus();
	
	
	menubar=yes, toolbar=yes, location=yes, status=yes
}

