<!-- Begin code
function new_window(version) 
{
        edify = window.open('','edify','resizable=yes,menubar=no,toolbar=no,scrollbars=yes,status=no,width=800,height=600');
        edify.location.href= version;
}
// -- End code -->
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function PopWin(url,page,x,y,z){
	eval("nw = window.open(url, page,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,pageXOffset=0,pageYOffset=0,top=0,left=" + z + ",width=" + x + ",height=" + y + "')");
	if ( nw.focus != null)
	{nw.focus();}
}
	
function PopLargestWin(url,page){
	tempWidth = screen.availWidth -10;
	tempHeight = screen.availHeight - 30;
	
	eval("nw = window.open(url, page,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,pageXOffset=0,pageYOffset=0,top=0,left=0,width=" + tempWidth + ",height=" + tempHeight + "')");
	if ( nw.focus != null)
	{nw.focus();}
}

//-->