/* blueox_common.js - contains all common javascript functions */


function InsertBoilerPlate(lmdate, itr){

	var hstr = '<table><tr><td><h5>';
	hstr = hstr + 'Send mail to <a href=\"mailto:webmaster&#064;blueoxsw.com\">webmaster&#064;blueoxsw.com</a> with questions or comments about this web site.<br>';

	hstr = hstr + 'Copyright © 2003 BlueOx Software<br>';
	hstr = hstr + 'Last modified: ' + lmdate;

	if (itr == "true") {
		hstr = hstr + '</h5></td><td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td><td>';
		hstr = hstr + '<A HREF=\"http://www.InternetTrafficReport.com/\"><IMG ALT=\"The Internet Traffic Report monitors the flow of data around the world. It then displays a value between zero and 100. Higher values indicate faster and more reliable connections.\" SRC=\"http://www.InternetTrafficReport.com/itr-clean.gif\" WIDTH=\"125\" HEIGHT=\"89\" BORDER=\"0\"></A>';
	}
	
	hstr = hstr + '</td></tr></table>';
	
	document.writeln(hstr);

}

function CreatePopupWindow(picname,hval,wval){

	picname="birch creek logo.gif";
	hval=600;
	wval=800;
	var params="height=" + hval + ",width=" + wval + ",scrollbars,left100,top=100";
	smallwindow=window.open(picname,"",params);
}

function CreatePopupWindowBig(picname){

	smallwindow=window.open(picname,"","height=740,width=1060,scrollbars,left=100,top=100");
}
