// JavaScript Document
function mp(video){

	if(video == 0){
		file_name = "townshipdialup.wmv"
		width = "160"
		height = "190"
	}else{
		file_name = "townshiphighspeed.wmv"
		width = "320"
		height = "310"
	}
	document.write('<object id="MediaPlayer" width="'+width+'" height="'+height+'" hspace="3" vspace="3"')
	document.write('classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"')
	document.write('type="audio/x-ms-wma"')
	document.write('standby="Loading Microsoft® Windows® Media Player components..."')
	document.write('codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701">')
	document.write('<param name="filename" value="/clips/'+file_name+'">')
	document.write('<param name="AUTOSTART" value="true">')
	document.write('<param name="ShowStatusBar"  value="true">')
	document.write('<param name="showControls" value="true">')
		document.write('<embed filename="/clips/'+file_name+'" id="MediaPlayer" width="'+width+'" hspace="3" vspace="3" height="'+height+'" autostart="1" showcontrols="1"  showstatusbar="1" type="audio/x-ms-wma"></embed>')
	document.write('</object>' )
}