<!--
function printit(){
if (!window.print){
alert("You need NS4.x or IE5 to use this print button!")
return
}
window.print()
}
//-->

function NewWindow(mypage, myname, w, h, scroll) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=no'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { 
	win.window.focus(); 
	}
}

function getflash (fvar, w, h)

{
	
	
//	alert(dvar);
	
	
	
<!--
var MM_contentVersion = 6;
var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
if ( plugin ) {
		var words = navigator.plugins["Shockwave Flash"].description.split(" ");
	    for (var i = 0; i < words.length; ++i)
	    {
		if (isNaN(parseInt(words[i])))
		continue;
		var MM_PluginVersion = words[i]; 
	    }
	var MM_FlashCanPlay = MM_PluginVersion >= MM_contentVersion;
}
else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 
   && (navigator.appVersion.indexOf("Win") != -1)) {
	document.write('<SCR' + 'IPT LANGUAGE=VBScript\> \n'); //FS hide this from IE4.5 Mac by splitting the tag
	document.write('on error resume next \n');
	document.write('MM_FlashCanPlay = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & MM_contentVersion)))\n');
	 document.write('</SCR' + 'IPT\> \n');
}
if ( MM_FlashCanPlay ) {
	var zvar = "<div class=\"flash\"><OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"";
	zvar = zvar + " codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\"";
	zvar = zvar + " ID=\"script\" WIDTH=\"467\" HEIGHT=\"60\" ALIGN=\"\">";
	zvar = zvar + "<PARAM NAME=movie VALUE=\"images' + fvar + '\"> <PARAM NAME=quality VALUE=high>";
	zvar = zvar + "<EMBED src=\"images' + fvar + '\" quality=high bgcolor=#FFFFFF ";
	zvar = zvar + " swLiveConnect=FALSE WIDTH=\"467\" HEIGHT=\"60\" NAME=\"script\" ALIGN=\"\"";
	zvar = zvar + " TYPE=\"application/x-shockwave-flash\" PLUGINSPAGE=\"http://www.macromedia.com/go/getflashplayer\">";
	zvar = zvar + " </EMBED>";
	zvar = zvar + " </OBJECT></div>";
}
//-->

	
	}
	

	
	<!--

/***********************************************
* Required field(s) validation v1.10- By NavSurf
* Visit Nav Surf at http://navsurf.com
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

function formCheck(formobj){
	// Enter name of mandatory fields
	var fieldRequired = Array("Name", "Email", "Tel");
	// Enter field description to appear in the dialog box
	var fieldDescription = Array("Your Name", "Your E-mail Address", "Your Mobile Telephone Number");
	// dialog message
	var alertMsg = "Please complete the following fields:\n";
	
	var l_Msg = alertMsg.length;
	
	for (var i = 0; i < fieldRequired.length; i++){
		var obj = formobj.elements[fieldRequired[i]];
		if (obj){
			switch(obj.type){
			case "select-one":
				if (obj.selectedIndex == -1 || obj.options[obj.selectedIndex].text == ""){
					alertMsg += " - " + fieldDescription[i] + "\n";
				}
				break;
			case "select-multiple":
				if (obj.selectedIndex == -1){
					alertMsg += " - " + fieldDescription[i] + "\n";
				}
				break;
			case "text":
			case "textarea":
				if (obj.value == "" || obj.value == null){
					alertMsg += " - " + fieldDescription[i] + "\n";
				}
				break;
			default:
			}
			if (obj.type == undefined){
				var blnchecked = false;
				for (var j = 0; j < obj.length; j++){
					if (obj[j].checked){
						blnchecked = true;
					}
				}
				if (!blnchecked){
					alertMsg += " - " + fieldDescription[i] + "\n";
				}
			}
		}
	}

	if (alertMsg.length == l_Msg){
		return true;
	}else{
		alert(alertMsg);
		return false;
	}
}
// -->