<!--- Uyemura Associates                 (c) 2005 --->
<!--- Last Update: 05.05.07                       --->
<!--- Last Updated By: Raymond M. Uyemura         --->
<!--- Original Program By: Raymond M. Uyemura     --->

function showPrintable(page) {
	var w,h,iTop,iLeft,settings
	var printWin

	w = 700
	h = 600
	
	iLeft=(screen.width)?(screen.width-w)/2:100;
	iTop=(screen.height)?(screen.height-h)/2:100;

	settings='width='+w+',height='+h+',top='+iTop+',left='+iLeft+',scrollbars=yes,location=no,directories=no,status=no,menubar=yes,toolbar=yes,resizable=yes';

	printWin = window.open("print.cfm?page="+page,"printWin",settings);
	printWin.focus();
}

function jumpwindow(page,w,h) {
	var iTop,iLeft,settings
	var jumpWin
	
	iLeft=(screen.width)?(screen.width-w)/2:100;
	iTop=(screen.height)?(screen.height-h)/2:100;

	settings='width='+w+',height='+h+',top='+iTop+',left='+iLeft+',scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes';

	jumpWin = window.open(page+".cfm","demoWin",settings);
	jumpWin.focus();
}

function ViewBio(whodat) {
	var iTop,iLeft,settings
	var bioView
	
	iLeft=(screen.width)?(screen.width-400)/2:100;
	iTop=(screen.height)?(screen.height-400)/2:100;
	
	settings='width='+400+',height='+400+',top='+iTop+',left='+iLeft+',scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes';
	
	bioView = window.open(whodat,"bioView",settings);
	bioView.focus();
}

function ViewNons() {
	var iTop,iLeft,settings
	var viewer
	
	iLeft=(screen.width)?(screen.width-630)/2:100;
	iTop=(screen.height)?(screen.height-480)/2:100;
	
	settings='width='+700+',height='+600+',top='+iTop+',left='+iLeft+',scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes';
	
	viewer = window.open("rhc_resources.cfm?typ=nonprofit","viewer",settings);
	viewer.focus();
}

function ViewTax() {
	var iTop,iLeft,settings
	var viewer
	
	iLeft=(screen.width)?(screen.width-630)/2:100;
	iTop=(screen.height)?(screen.height-480)/2:100;
	
	settings='width='+700+',height='+600+',top='+iTop+',left='+iLeft+',scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes';
	
	viewer = window.open("rhc_resources.cfm?typ=taxation","viewer",settings);
	viewer.focus();
}


function driveStart() {
	var iTop,iLeft,settings
	var dform
	
	iLeft=(screen.width)?(screen.width-600)/2:100;
	iTop=(screen.height)?(screen.height-300)/2:100;
	
	settings='width='+600+',height='+300+',top='+iTop+',left='+iLeft+',scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes';
	
	dform = window.open("driving.cfm","dform",settings);
	dform.focus();
}

function updateParent(newURL) {
	opener.document.location = newURL
	
}
