<!--
function charCountDown(inputField,outputTextSpanId){
	if (document.all) outputText = document.all.item(outputTextSpanId);
	if (document.getElementById) outputText = document.getElementById(outputTextSpanId);
	outputText.innerHTML = inputField.maxLength - inputField.value.length;
}


function validatePassword(form){
if (form.pwd1.value.length == 0) {alert('New password not entered !'); return false;}
if (form.pwd2.value.length == 0) {alert('Password confirmation not entered !'); return false;}
return true;
}


function writeHeader(HdrNr){
document.write('	<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="775" height="191" id="ntshdr" align="middle">')
document.write('	<param name="wmode" value="transparent" />')
document.write('	<param name="allowScriptAccess" value="sameDomain" />')
document.write('	<param name="movie" value="ntshdr.swf?i='+HdrNr+'" />')
document.write('	<param name="quality" value="high" />')
document.write('	<param name="bgcolor" value="#ffffff" />')
document.write('	<embed src="ntshdr.swf?i='+HdrNr+'" wmode="transparent" quality="high" bgcolor="#ffffff" width="775" height="191" name="ntshdr" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />')
document.write('	</object>')
}


function writePlayer(file) {
document.write('<object id="MediaPlayer" width=320 height=310 classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Windows Media Player components..." type="application/x-oleobject" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112">')
document.write('<param name="filename" value="'+file+'">')
document.write('<param name="showControls" value="True">')
document.write('<param name="showTracker" value="true">')
document.write('<param name="showStatusBar" value="true">')
document.write('<param name="showDisplay" value="false">')
document.write('<param name="autoStart" value="True">')
document.write('<param name="loop" value="false">')
document.write('<param name="transparentatStart" value="true">')
document.write('<param name="animationatStart" value="true">')
document.write('<param name="scale" value="aspect">')
document.write('<embed type="application/x-mplayer2" src="'+file+'" name="MediaPlayer" width=320 height=310 showStatusBar="1" showControls="1" showTracker="1" showDisplay="0" autoStart="1" loop="-1" bgColor="darkblue" kioskMode="true" scale="aspect" pluginspage="http://microsoft.com/windows/mediaplayer/en/download/" autosize="-1"></embed>')
document.write('</object>')
}
-->