//flash detection
/*
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 ) {
	window.location.replace("http://www.kirupa.com/flash.htm");
} else{
	window.location.replace("http://www.kirupa.com/noflash.htm");
}
*/

// flash alt content detection
/*
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 ) {
		document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write('  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ');
	document.write(' ID="script" WIDTH="300" HEIGHT="200" ALIGN="">');
	document.write(' <PARAM NAME=movie VALUE="script.swf"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#FFFFFF>  '); 
	document.write(' <EMBED src="script.swf" quality=high bgcolor=#FFFFFF  ');
	document.write(' swLiveConnect=FALSE WIDTH="300" HEIGHT="200" NAME="script" ALIGN=""');
	document.write(' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">');
	document.write(' </EMBED>');
	document.write(' </OBJECT>');
} else{
	document.write('<IMG SRC="script.gif" WIDTH="300" HEIGHT="200" usemap="#script" BORDER=0>');
}
*/



//
function getUserInfo(){
	isWin = navigator.userAgent.toLowerCase().indexOf("windows") !=-1;
	fHasWMP52 = (navigator.mimeTypes && navigator.mimeTypes["application/x-mplayer2"] && navigator.mimeTypes["application/x-mplayer2"].enabledPlugin);
}







function validate(frm) {
		var inputFields = new Array("name" ,"email" ,"comments");
		var counter;
		var name;
		var msg = "Please complete the following fields:\n";
		var badFields = "";
		for (counter = 0; counter < inputFields.length; counter++) {
			name = inputFields[counter];
			if (frm.elements[name].value.length == 0) {
				if (name == "formmail_mail_email") {
					badFields = badFields + "  -  \n";
				} else {
					badFields = badFields + "  - " + name + "\n";
				}
			}
		}
		if (badFields.length != 0) {
			alert(msg + badFields);
			return false;
		}
		return true;
	}
	
function changeBtn(){
	var urlLoc=document.location.toString();
	var pageArray=urlLoc.split("/");
	
	if(pageArray[4] == "home.php"){
		var btn=document.getElementById('iMainBtnHome');
		btn.className = "selected";
		btn.innerHTML="Home";
		
	}else if(pageArray[4] == "about.php"){
		var btn=document.getElementById('iMainBtnAbout');
		btn.className = "selected";	
		btn.innerHTML="About";

	}else if(pageArray[4] == "music.php"){
		var btn=document.getElementById('iMainBtnMusic');
		btn.className = "selected";	
		btn.innerHTML="Music";
		
	}else if(pageArray[4] == "dates.php"){
		var btn=document.getElementById('iMainBtnDates');
		btn.className = "selected";	
		btn.innerHTML="Dates";

	}else if(pageArray[4] == "contact.php"){
		var btn=document.getElementById('iMainBtnContact');
		btn.className = "selected";	
		btn.innerHTML="Contact";

	}else if(pageArray[4] == "guestbook.php"){
		var btn=document.getElementById('iMainBtnGuests');
		btn.className = "selected";	
		btn.innerHTML="Guests";
	
	}else if(pageArray[4] == "testimonials.php"){
		var btn=document.getElementById('iMainBtnTestimonials');
		btn.className = "selected";	
		btn.innerHTML="Testimonials";
	}	
	
	}	
	


