/********************************/
/* Created by Robert King		*/
/* robert@area51.org.uk			*/
/********************************/
/* COPYRIGHT NOTICE				*/
/* Copyright © 2000 Robert King */
/* All Rights Reserved.			*/
/********************************/
function f_NewWinOld(page) {
	v_width = screen.availwidth - 10;
	v_height = screen.availheight - 10;
	x=window.open(page, "","top=5,left=5,width="+v_width+",height="+v_height+",buttons=yes,scrollbars=yes,location=yes,menubar=yes,resizable=yes,status=yes,directories=yes,toolbar=yes");
	return;
}
function f_CreWin(page,wi,hi) {
	if (!wi) wi=450;
	if (!hi) hi=450;
	OpenWin = this.open(page, "","top=25,left=25,width="+wi+",height="+hi+",buttons=no,scrollbars=no,location=no,menubar=no,resizable=no,status=no,directories=no,toolbar=no");
}
function f_NewWin(page) {
	x=window.open(page, "","buttons=yes,scrollbars=yes,location=yes,menubar=yes,resizable=yes,status=yes,directories=no,toolbar=yes");
	return;
}
