// JavaScript Document

<!--
//================================
// Popup Window
//================================
var BV = parseInt(navigator.appVersion);
// browser name
	var BN = "";
	if (navigator.userAgent.indexOf("MSIE") >= 0) {BN = "e";}
	else {
		if (navigator.appName.indexOf("Netscape") >= 0) {BN = "n";}
		else {BN = "g"}
	}
//open window	
function openWin(url) { 
var winFeatures = 'width=510,height=470,scrollbars=yes';
win = open(url,'photopic',winFeatures); 
if (top.BV == 2 && (navigator.appVersion.indexOf('mac')>= 0)) {win = open(url,'photopic',winFeatures)} 
if (top.BV == 2 && BN == 'n') {win.opener = top.self;} 
}
//-->

<!--
//================================
// Select box navigation
//================================
function gotosite(site) {
	if (site != "") {
    	self.location=site
    } 
}
//-->

<!--
//================================
// Clear Text from Form
//================================
function clearform(thisFormfield, strDefault){
	if(thisFormfield.value == strDefault){thisFormfield.value=''};
}
//-->



