// JavaScript Document
function maxOpenFrame(url)
{
	var url, w, h;
	
	w = screen.width;
	h = screen.height; 
	
	maxFrame = window.open(url, "xidrasbookFrame","resizable=yes,status=no,statusbar=no,scrollbar=no,toolbar=no,menubar=no,location=no,width="+w+",height="+h+",top=0,left=0");
	maxFrame.focus();
}