/*
=====================================================
Copyright(c) APRES LA PLUIE INC. All Rights Reserved.
http://www.apres-la-pluie.cc/
=====================================================
*/

//tools(shared)



//window set
//target_blank-open&focus -------------------------------------------------------------------------------------------------------
function openTarget(url) {
	if (url) {
		opwin = window.open(url);
		opwin.focus();
	}
}

//open&focus -------------------------------------------------------------------------------------------------------------------- 
function openWin(theURL,winName,features) {
	
	var scrH=screen.height;
	
	//screen.height>=1050height927
	if(scrH>=1050){
		var winH=927;
	}
	//screen.height<1024avalHeight(screen.height-taskbar)
	else{
		var winH=screen.availHeight;
	}
	
	//height set
	var winD=window.open(theURL,winName,'width=680,height='+winH+',scrollbars=yes,resizable=yes,status=yes');
	
	
	//moveTo 0,0
	//Google Chrome not move
	if (navigator.userAgent.indexOf("Chrome") == -1) { 
		winD.moveTo(0,0);
	}
	
	//focus	
	winD.focus();
}

//close ------------------------------------------------------------------------------------------------------------------------- 
winClose=function(){
	window.close();
	return false;
}

