<!--
function Popables(theURL,winName,features,w,h) { //v2.0
	var LeftPosition;
	var TopPosition;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	window.open(theURL,winName,'top='+TopPosition+',left='+LeftPosition+','+features);
	// window.open(theURL,winName,features);
}

function setFlag(elem,frmObj,state){
	var hold = "";
	var holdForm = "";
	holdForm = 	eval("document."+frmObj+"."+elem);
	holdForm.value = state
	alert(holdForm.value);
}

function resizePage(){
	top.window.moveTo(0,0);
	if (document.all) {
		//top.window.resizeTo((screen.availWidth-25),(screen.availHeight-25));
		top.window.resizeTo(screen.availWidth,screen.availHeight);
	}
	else if (document.layers||document.getElementById) {
		if (top.window.outerHeight < screen.availHeight||top.window.outerWidth < screen.availWidth){
			//top.window.outerHeight = screen.availHeight-25;
			//top.window.outerWidth = screen.availWidth-25;
			top.window.outerHeight = screen.availHeight;
			top.window.outerWidth = screen.availWidth;
		}
	}
}

function findPageSize(type){
	alert(window.screen.availHeight)
	if(type){
		return window.screen.availWidth;
	}else{
		return window.screen.availHeight;
	}
}

function flashCntrol(str){
	//document.getElementById("bdy").Play();
	document.getElementById("bdy").setVariable( "varSet", Number(str));
}
//-->