/*
	window.js
*/

function openBrWindowN( url )
{

	window.open( url, '', 'width=1024,height=360,scrollbars=no,location=no,menubar=no,toolbar=no,status=no' );

}

function openBrWindowWH( url, w, h )
{
	window.open( url, '', 'width=' + w + ',height=' + h + ',resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no,status=no' );

}



// flash用
function getAgent() {  
    var ua = "";  
    ua = navigator.userAgent.toLowerCase();  
    return ua;  
}
// for_user
function openBrWindowWHF()
{
	var URL		= "for_user/index.html";
	var W		= 830;
	var H		= 700;
	window.open( URL, '', 'width=' + W + ',height=' + H + ',resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no,status=no' );
	return(true);
}
// for_user
function openBrWindow4concept( url )
{
	var W		= 800;// 800(+10)
	var H		= 550;// 550(+29)
	window.open( url, '3min', 'width=' + W + ',height=' + H + ',resizable=no,scrollbars=no,location=no,menubar=no,toolbar=no,status=no' );
	return(true);
}

function closeBrWindowN()
{

	window.close();

}




