function doPopUp(strict,page,w,h,sc,rs){
if(strict)
{
window.showModalDialog(page,null,"dialogHeight:"+h+"px;dialogWidth:"+w+"px;status:no;resizable:"+rs+";scroll:"+sc+";help:no;center:yes")
}else{
var cW = window.open(page,page.slice(0,2),"height="+h+",width="+w+",status=no,toolbar=no,menubar=no,location=no,resizable="+rs+",scrollbars="+sc+",directories=no,titlebar=no");
cW.window.focus();
}
}
function ShowHide(Obj){//ver 2.01+
  if(Obj.style.display == "none"){
    Obj.style.display = "";
	Obj.state="EXPAND";
	}else{
	Obj.style.display = "none";
	Obj.state= "COLLAPSE";
	}
}
function selectStart()
 {
	window.event.cancelBubble = true;
	window.event.returnValue = false;
	return false;
 }
