<!--
	var screen_width = screen.width;
	var screen_height = screen.height;

	var next_url    = "";
	var child_win   = "";

	function launchChildWin(next_url) {
		if (navigator.appName == "Netscape") {
			if ((screen_width >= 1024) && (screen_height >= 768)) 
				child_win = window.open(next_url, 'childWinCamaro', 'toolbar=yes,status=yes,scrollbars=yes,location=yes,menubar=yes,directories=yes,resizable=yes,width=875,height=545,screenX=10,screenY=10,left=10,top=10');
			else
				child_win = window.open(next_url, 'childWinCamaro', 'toolbar=yes,status=yes,scrollbars=yes,location=yes,menubar=yes,directories=yes,resizable=yes,width=650,height=375,screenX=10,screenY=10,left=10,top=10');
		} else {
			if ((screen_width >= 1024) && (screen_height >= 768)) 
				child_win = window.open(next_url, 'childWinCamaro', 'toolbar=yes,status=yes,scrollbars=yes,location=yes,menubar=yes,directories=yes,resizable=yes,width=875,height=695,screenX=10,screenY=10,left=10,top=10');
			else
				child_win = window.open(next_url, 'childWinCamaro', 'toolbar=yes,status=yes,scrollbars=yes,location=yes,menubar=yes,directories=yes,resizable=yes,width=650,height=525,screenX=10,screenY=10,left=10,top=10');
		}
	}
// -->