function openPageWindow(URL) {
	newWindow = window.open(""+URL,+Math.round(Math.random()*10000),"location=yes,toolbar=yes,menubar=yes,status=yes,resizable=yes,scrollbars=yes,directories=yes");
	newWindow.focus();
}
function openDocWindow(docName) {
	var w=800, h=600;
	if(screen.width!=null && screen.height!=null) {
		w=screen.width;
		h=screen.height;
	}
	newWindow = window.open(""+docName,+Math.round(Math.random()*10000),"left="+w/8+",top="+(h/8-50)+",width="+(6*w/8)+",height="+(5*h/8)+",location=yes,toolbar=no,menubar=yes,status=yes,resizable=yes,scrollbars=yes,directories=no");
	newWindow.focus();
}
function openSampleText(textName) {
	var w=800, h=600;
	if(screen.width!=null && screen.height!=null) {
		w=screen.width;
		h=screen.height;
	}
	newWindow = window.open(""+textName,+Math.round(Math.random()*10000),"left="+(w/2-360)+",top="+(h/4-120)+",width=720,height=480,location=no,toolbar=no,menubar=no,status=no,resizable=no,scrollbars=no,directories=no");
	newWindow.focus();
}
function openSmallPage(pageName,width,height) {
	var w=800, h=600;
	if(screen.width!=null && screen.height!=null) {
		w=screen.width;
		h=screen.height;
	}
	newWindow = window.open(""+pageName,+Math.round(Math.random()*10000),"left="+((w-width)/2)+",top="+((h-height)/2)+",width="+width+",height="+height+",location=no,toolbar=no,menubar=no,status=no,resizable=no,scrollbars=no,directories=no");
	newWindow.focus();
}