/*	browsers sniffer and css file 		*/
bName=navigator.appName;
bVer=parseInt(navigator.appVersion);
if(bName=="Netscape" && bVer>=5)br="n5";
	else if(bName=="Netscape" && bVer>=4)br="n4";
	else if(bName=="Netscape" && bVer==3)br="n3";
	else if(bName=="Netscape" && bVer==2)br="n2";
	else if(bName=="Microsoft Internet Explorer" && bVer>=5)br="e5";
	else if(bName=="Microsoft Internet Explorer" && bVer>=4)br="e4";
	else if(bName=="Microsoft Internet Explorer")br="e3";
	else br="n2";

if (bName=="Netscape") {
	if (br=="n4") {
		document.write('<link rel="styleSheet" href="../stylesheets/netclimate.css" type="text/css" media="screen" />');
	} else {
		document.write('<link rel="styleSheet" href="../stylesheets/climate.css" type="text/css" media="screen" title="default" />');
		document.write('<link rel="stylesheet" type="text/css" media="print" href="../stylesheets/print.css" />');
	}
} else {
	document.write('<link rel="styleSheet" href="../stylesheets/climate.css" type="text/css" media="screen" title="default" />');
	document.write('<link rel="stylesheet" type="text/css" media="print" href="../stylesheets/print.css" />');
}



/* 	open window script	*/
function openClimateChangeWindow() {
		var style='resizable=yes,status=no,width=' + (screen.availWidth - 12) + ',height=' + (screen.availHeight - 32) + ',top=0,left=0';
		StorybookWindow = window.open('../flash_check/enter_climatechange.htm','Frame',style);
}