
var dropdowncontent={
	disableanchorlink: true, //when user clicks on anchor link, should link itself be disabled (always true if "revealbehavior" above set to "click")
 hidedivmouseout: [true, 200], //Set hiding behavior within Drop Down DIV itself: [hide_div_onmouseover?, miliseconds_before_hiding]
	ajaxloadingmsg: "Loading content. Please wait...", //HTML to show while ajax page is being feched, if applicable
	ajaxbustcache: true, //Bust cache when fetching Ajax pages?

	getposOffset:function(what, offsettype){
		return (what.offsetParent)? what[offsettype]+this.getposOffset(what.offsetParent, offsettype) : what[offsettype]
	},

	isContained:function(m, e){
		var e=window.event || e
		var c=e.relatedTarget || ((e.type=="mouseover")? e.fromElement : e.toElement)
		while (c && c!=m)try {c=c.parentNode} catch(e){c=m}
		if (c==m)
			return true
		else
			return false
	},

	show:function(anchorobj, subobj, e){
		if (!this.isContained(anchorobj, e)){
			var e=window.event || e
			if (e.type=="click" && subobj.style.visibility=="visible"){
				subobj.style.visibility="hidden"
				return
			}
			var horizontaloffset=(subobj.dropposition[0]=="left")? -(subobj.offsetWidth-anchorobj.offsetWidth) : 0 //calculate user added horizontal offset
			var verticaloffset=(subobj.dropposition[1]=="top")? -subobj.offsetHeight : anchorobj.offsetHeight //calculate user added vertical offset
			subobj.style.left=this.getposOffset(anchorobj, "offsetLeft") + horizontaloffset + "px"
			subobj.style.top=this.getposOffset(anchorobj, "offsetTop")+verticaloffset+"px"
			subobj.style.clip=(subobj.dropposition[1]=="top")? "rect(auto auto auto 0)" : "rect(0 auto 0 0)" //hide drop down box initially via clipping
			subobj.style.visibility="visible"
			subobj.style.zIndex = '1002'
			subobj.startTime=new Date().getTime()
			subobj.contentheight=parseInt(subobj.offsetHeight)
			if (typeof window["hidetimer_"+subobj.id]!="undefined") //clear timer that hides drop down box?
				clearTimeout(window["hidetimer_"+subobj.id])
			this.slideengine(subobj, (subobj.dropposition[1]=="top")? "up" : "down")
		}
	},

	curveincrement:function(percent){
		return (1-Math.cos(percent*Math.PI)) / 2 //return cos curve based value from a percentage input
	},

	slideengine:function(obj, direction){
		var elapsed=new Date().getTime()-obj.startTime //get time animation has run
		if (elapsed<obj.glidetime){ //if time run is less than specified length
			var distancepercent=(direction=="down")? this.curveincrement(elapsed/obj.glidetime) : 1-this.curveincrement(elapsed/obj.glidetime)
			var currentclip=(distancepercent*obj.contentheight)+"px"
			obj.style.clip=(direction=="down")? "rect(0 auto "+currentclip+" 0)" : "rect("+currentclip+" auto auto 0)"
			window["glidetimer_"+obj.id]=setTimeout(function(){dropdowncontent.slideengine(obj, direction)}, 10)
		}
		else{ //if animation finished
			obj.style.clip="rect(0 auto auto 0)"
		}
	},

	hide:function(activeobj, subobj, e){
		if (!dropdowncontent.isContained(activeobj, e)){
			window["hidetimer_"+subobj.id]=setTimeout(function(){
				subobj.style.visibility="hidden"
				subobj.style.left=subobj.style.top=0
				clearTimeout(window["glidetimer_"+subobj.id])
			}, dropdowncontent.hidedivmouseout[1])
		}
	},

	hidediv:function(subobjid){
		document.getElementById(subobjid).style.visibility="hidden"
	},

	ajaxconnect:function(pageurl, divId){
		var page_request = false
		var bustcacheparameter=""
		if (window.XMLHttpRequest) // if Mozilla, IE7, Safari etc
			page_request = new XMLHttpRequest()
		else if (window.ActiveXObject){ // if IE6 or below
			try {
			page_request = new ActiveXObject("Msxml2.XMLHTTP")
			} 
			catch (e){
				try{
				page_request = new ActiveXObject("Microsoft.XMLHTTP")
				}
				catch (e){}
			}
		}
		else
			return false
		document.getElementById(divId).innerHTML=this.ajaxloadingmsg //Display "fetching page message"
		page_request.onreadystatechange=function(){dropdowncontent.loadpage(page_request, divId)}
		if (this.ajaxbustcache) //if bust caching of external page
			bustcacheparameter=(pageurl.indexOf("?")!=-1)? "&"+new Date().getTime() : "?"+new Date().getTime()
		page_request.open('GET', pageurl+bustcacheparameter, true)
		page_request.send(null)
	},

	loadpage:function(page_request, divId){
		if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1)){
			document.getElementById(divId).innerHTML=page_request.responseText
		}
	},

 init:function(anchorid, pos, glidetime, revealbehavior){
		var anchorobj=document.getElementById(anchorid)
		var subobj=document.getElementById(anchorobj.getAttribute("rel"))
		var subobjsource=anchorobj.getAttribute("rev")
		if (subobjsource!=null && subobjsource!="")
			this.ajaxconnect(subobjsource, anchorobj.getAttribute("rel"))
		subobj.dropposition=pos.split("-")
		subobj.glidetime=glidetime || 1000
		subobj.style.left=subobj.style.top=0
		if (typeof revealbehavior=="undefined" || revealbehavior=="mouseover"){
			anchorobj.onmouseover=function(e){dropdowncontent.show(this, subobj, e)}
			anchorobj.onmouseout=function(e){dropdowncontent.hide(subobj, subobj, e)}
			if (this.disableanchorlink) anchorobj.onclick=function(){return false}
		}
		else
			anchorobj.onclick=function(e){dropdowncontent.show(this, subobj, e); return false}
		if (this.hidedivmouseout[0]==true) //hide drop down DIV when mouse rolls out of it?
			subobj.onmouseout=function(e){dropdowncontent.hide(this, subobj, e)}
	}
}

//window.onload = function()
//	{
//		var lis = document.getElementsByTagName('li');
//		for(i = 0; i < lis.length; i++)
//		{
//			var li = lis[i];
//			if (li.className == 'headlink')
//			{
//				li.onmouseover = function() { this.getElementsByTagName('ul').item(0).style.display = 'block'; }
//				li.onmouseout = function() { this.getElementsByTagName('ul').item(0).style.display = 'none'; }
//			}
//		}
//	}
	
	
	/*
	// A simple class method to show a popup without creating an instance
Popup.show = function(divObject, referenceObject, position, options, modal) {
	var popup;
	if (defined(divObject)) { 
		popup = new Popup(divObject);
	}
	else {
		popup = new Popup();
		popup.destroyDivOnHide = true;
	}
	if (defined(referenceObject)) { popup.reference = DOM.resolve(referenceObject); }
	if (defined(position)) { popup.position = position; }
	if (defined(options) && options!=null && typeof(options)=="object") {
		for (var i in options) {
			popup[i] = options[i];
		}
	}
	if (typeof(modal)=="boolean") {
		popup.modal = modal;
	}
	popup.destroyObjectsOnHide = true;
	popup.show();
	return popup;
};

// A simple class method to show a modal popup
Popup.showModal = function(divObject, referenceObject, position, options) {
	Popup.show(divObject, referenceObject, position, options, true);
};

*/
String.prototype.trim2 = function() {
	a = this.replace(/^\s+/, '');
	return a.replace(/\s+$/, '');
};
var key_val='';

function h_digit_only(t)
{
	key_val	=	t.value;	
}

function h_date_only(da)
{

	if (da.value.length>10) return false;

	if(da.value.length==0) {da.value=""; return false;}

	if(da.value.length==1 && da.value.charAt(0)>="2") {da.value = 0+da.value+'/';return false;}

	if(da.value.length==2) {da.value = da.value + "/"; da.focus(); }

	if(da.value.length==3) {return false;}	
	
	if(da.value.length==4 && da.value.charAt(3)>"3") {da.value = key_val;return false;}				

	if(da.value.length==5) {da.value = da.value + "/20"; da.focus(); }

	if(da.value.length==6) {return false;}	
}

function trim(str) 
{
	return str.replace(/^\s+|\s+$/g,"");
}

function h_revert(th){	//	on blur
	var charpos = th.value.search("[^0-9.-]"); 
	if(trim(th.value).length > 0 &&  charpos >= 0) 
	{		
		th.value		=	'';
		return false;
	}
	return true;
}

function h_digit_revert(th){
	var charpos = th.value.search("[^0-9.-]"); 
	if(trim(th.value).length > 0 &&  charpos >= 0) 
	{		
		th.value		=	key_val;
		return false;
	}
	return true;
}

function h_digit_revert_date(th){
	var charpos = th.value.search("[^0-9\/]"); 
	if(trim(th.value).length > 0 &&  charpos >= 0) 
	{		
		th.value		=	key_val;
		return false;
	}
	return true;
}

function h_revert_date(th){	//	On blur
	var charpos = th.value.search("[^0-9\/]"); 
	if(trim(th.value).length > 0 &&  charpos >= 0) 
	{		
		th.value		=	'';
		return false;
	}
	
	var temp_arr = th.value.split("/");
	if(th.value.length==3 && temp_arr.length == 1)
	{
		th.value = "0" + th.value.charAt(0) + "/" + th.value.charAt(1) + th.value.charAt(2);
		
	}
	else if(th.value.length==3 && temp_arr.length != 1)
	{
		th.value = "0" + th.value.charAt(0) +  th.value.charAt(1) + th.value.charAt(2) + th.value.charAt(3);
		
	}else if(th.value.length==6 && temp_arr.length == 1)
	{
		th.value = "0" + th.value.charAt(0) + "/0" + th.value.charAt(1) + "/" + th.value.charAt(2) + th.value.charAt(3) + th.value.charAt(4) + th.value.charAt(5);
		
	}
	else if(th.value.length==6 && temp_arr.length != 1)
	{
		th.value = th.value.charAt(0) +  th.value.charAt(1) + th.value.charAt(2) + th.value.charAt(3) + th.value.charAt(4) + th.value.charAt(5);
		
	}	
	else if(th.value.length >= 6 && temp_arr.length == 1)
	{
		th.value = th.value.charAt(0) + th.value.charAt(1) + "/" + th.value.charAt(2) + th.value.charAt(3) + "/" + th.value.charAt(4) + th.value.charAt(5) + th.value.charAt(6) + th.value.charAt(7);
		
	}
	else if(th.value.length >= 6 && temp_arr.length != 1)
	{
		th.value = th.value.charAt(0) + th.value.charAt(1) + th.value.charAt(2) + th.value.charAt(3) + th.value.charAt(4) + th.value.charAt(5) + th.value.charAt(6) + th.value.charAt(7) + th.value.charAt(8) + th.value.charAt(9);
		
	}
	
	var temp_arr = th.value.split("/");
	
	if(parseInt(temp_arr[0])>12){		
		th.value		=	'';
		return false;
	}
	
	if(parseInt(temp_arr[1])>31){		
		th.value		=	'';
		return false;
	}
	
	return true;
}

function h_revert_time(th){	//	on blur
	var charpos = th.value.search("[^0-9:]"); 
	if(trim(th.value).length > 0 &&  charpos >= 0) 
	{		
		th.value		=	'';
		return false;
	}
	return true;
}

function h_newtime_only(ti)
{
	//if (event.keyCode < 47 || event.keyCode > 57 ) event.returnValue = false;
	if(!h_revert_time(ti))
		return false;
		
	var temp_arr = ti.value.split(":");
	if(ti.value.length==3 && temp_arr.length == 1)
	{
		ti.value = "0" + ti.value.charAt(0) + ":" + ti.value.charAt(1) + ti.value.charAt(2);
		return false;
	}
	else if(ti.value.length==3 && temp_arr.length != 1)
	{
		ti.value = "0" + ti.value.charAt(0) +  ti.value.charAt(1) + ti.value.charAt(2) + ti.value.charAt(3);
		return false;
	}
	else if(ti.value.length >= 4 && temp_arr.length == 1)
	{
		ti.value = ti.value.charAt(0) + ti.value.charAt(1) + ":" + ti.value.charAt(2) + ti.value.charAt(3);
		return false;
	}
	else if(ti.value.length >= 4 && temp_arr.length != 1)
	{
		ti.value = ti.value.charAt(0) + ti.value.charAt(1) + ti.value.charAt(2) + ti.value.charAt(3) + ti.value.charAt(4);
		return false;
	}
}

function h_digit_revert_time(th){
	var charpos = th.value.search("[^0-9:]"); 
	if(trim(th.value).length > 0 &&  charpos >= 0) 
	{		

		th.value		=	key_val;
		return false;
	}
	return true;
}




