function getFullscreen( url ){
	var str="left=0,screenX=0,top=0,screenY=0,resizable=1";
	if(window.screen){
		var ah=screen.availHeight;
		var aw=screen.availWidth;
		str+=",height="+ah;
		str+=",width="+aw;
	}
		var tmp=window.open(url,'birakugroup',str);
	tmp.moveTo(0,0);
	tmp.resizeTo(aw,ah);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}