// 2000-08-22 RD	Added popupFull function

// Function to open a new document and show the selected text document in it
// also name the current window so that the popup window can refer to it
window.name="mainwindow";

// Focus the window when it's loaded
window.focus();


function popupSized(theurl,thename,theheight,thewidth) 
{
	var argstring='alwaysraised,directories="no",height='+theheight+',width='+thewidth+',left=100,resizable,scrollbars,status="no",toobar="no"';

	newwindow = window.open(theurl,thename,argstring,false);

	return true;
}

function popupFull(theurl,thename) 
{
	var width=screen.availWidth-12;
	var height=screen.availHeight-29;
	
	var argstring='alwaysraised,directories="no",height='+height+',width='+width+',left=0,top=0,resizable,scrollbars,status="no",toobar="no"';
	newwindow = window.open(theurl,thename,argstring,false);

	return true;
}