<!-- ;
function openWin(strURL,strWinName){ 
	var intWidth,intHeight,leftPos,topPos;
	intWidth = 494;
	intHeight = 361;
	leftPos = (screen.availWidth - intWidth) / 2 
	topPos = (screen.availHeight - intHeight) / 2 
	window.open(strURL,strWinName,"width="+intWidth+",height="+intHeight+",left="+leftPos+",top="+topPos+",toolbar=no,location=no,directories=no,status=no,menubar=mo,scrollbars=no,resizable=no,copyhistory=no");
}

function openWinAlt(strURL,strWinName){ 
	var intWidth,intHeight,leftPos,topPos;
	intWidth = 420;
	intHeight = 510;
	leftPos = (screen.availWidth - intWidth) / 2 
	topPos = (screen.availHeight - intHeight) / 2 
	window.open(strURL,strWinName,"width="+intWidth+",height="+intHeight+",left="+leftPos+",top="+topPos+",toolbar=no,location=no,directories=no,status=no,menubar=mo,scrollbars=no,resizable=no,copyhistory=no");
}

//
var gblnVideoPlaying = false;
d=document;l=(d.layers)?1:0;op=navigator.userAgent.toLowerCase().indexOf('opera')!=-1;
g=navigator.userAgent.toLowerCase().indexOf('gecko') != -1;
saf=navigator.userAgent.toLowerCase().indexOf('safari') != -1;
ff=navigator.userAgent.toLowerCase().indexOf('firefox') != -1;

// Get element by name
function gE(e,f){if(l){f=(f)?f:self;var V=f.document.layers;if(V[e])return V[e];var t;for(var W=0;W<V.length;)t=gE(e,V[W++]);return t;}if(d.all)return d.all[e];return d.getElementById(e);}

function playVideoClip() {
	if (gblnVideoPlaying) return false;
	var objVideo = gE('maingraphicx');
	objVideo.Play();
	gblnVideoPlaying = true;
}

// end hide -->