
function popup_win(URL, NM, w, h, fullscreen ){
	if( fullscreen == true ) {
		firstpage = window.open( URL, NM, "fullscreen" ); }
	else {
		firstpage = window.open( URL, NM, "status=0,scrollbars=1,titlebar=0,resizable=0,width="+w+",height="+h ); }
}

function popup_adv(URL, NM, w, h ){
		firstpage = window.open( URL, NM, "status=0,scrollbars=0,titlebar=0,resizable=0,width="+w+",height="+h ); 
}

function sta( msg )
{
	if( msg ) {
		window.status = msg;
	}else{
		window.status = '';
	}
}
