  
  /* user registration valided*/
function CheckAvailable()
{
var usernm = document.frm.userName.value;
var parameter="usrnm="+usernm;
var div="avlalert";
DoCallback(parameter,div);
document.getElementById(div).style.display="block";
}

function DoCallback(parameter,div)
{
	var xmlHttp	 
	var divnm=div
	xmlHttp=GetXmlHttpObject()
	if (xmlHttp==null)
	{
		alert ("Browser does not support HTTP Request")
		return
	}
	var url="ajaxcontrol.php"
	url=url+"?"+parameter
	xmlHttp.onreadystatechange=stateChanged
	xmlHttp.open("POST",url,true)
	xmlHttp.send(null)
	
	function stateChanged() 
	{ 
		if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
		{ 
			document.getElementById(divnm).innerHTML=xmlHttp.responseText 			
		}
		else{
			document.getElementById(divnm).innerHTML="<img src=\"../images/lodingImage/mozilla_blu.gif\" width=\"65\" height=\"13\" alt=\"\" />"
		}
	}
	function GetXmlHttpObject()
	{
		var xmlHttp=null;
		try
		{
			// Firefox, Opera 8.0+, Safari
			xmlHttp=new XMLHttpRequest();
		}
		catch (e)
		{
			//Internet Explorer
			try
			{
				xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
			}
			catch (e)
			{
				xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
			}
		}
		return xmlHttp;
	}
}

/* user registration valided*/

function DoCallback_all(parameter,div,fpath)
{
	var xmlHttp	 
	var divnm=div
	xmlHttp=GetXmlHttpObject()
	if (xmlHttp==null)
	{
		alert ("Browser does not support HTTP Request")
		return
	}
	//var url="ajaxcontrol.php"
	var url=fpath;
	url=url+"?"+parameter	
	xmlHttp.onreadystatechange=stateChanged
	xmlHttp.open("POST",url,true)
	xmlHttp.send(null)
	
	function stateChanged() 
	{ 
		if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
		{ 
			document.getElementById(divnm).innerHTML=xmlHttp.responseText 			
		}
		else{
			document.getElementById(divnm).innerHTML="Profile Updated!"
		}
	}
	function GetXmlHttpObject()
	{
		var xmlHttp=null;
		try
		{
			// Firefox, Opera 8.0+, Safari
			xmlHttp=new XMLHttpRequest();
		}
		catch (e)
		{
			//Internet Explorer
			try
			{
				xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
			}
			catch (e)
			{
				xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
			}
		}
		return xmlHttp;
	}
}

/* Go to index page*/
function submitpage()
{	
  document.frm.action="index.php";
  document.frm.submit();
}  
/* Go to index page*/

/* search by bedrooms script start */
var dropdowncontent={
 delaybeforehide: 200, 
	disableanchorlink: true, 
	ajaxloadingmsg: "Loading content. Please wait...", 
	ajaxbustcache: true,
	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 horizontaloffset=(subobj.dropposition[0]=="left")? -(subobj.offsetWidth-anchorobj.offsetWidth) : 0 
			var verticaloffset=(subobj.dropposition[1]=="top")? -subobj.offsetHeight : anchorobj.offsetHeight 
			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)" 
			subobj.style.visibility="visible"
			subobj.startTime=new Date().getTime()
			subobj.contentheight=parseInt(subobj.offsetHeight)
			if (typeof window["hidetimer_"+subobj.id]!="undefined") 
				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 
	},

	slideengine:function(obj, direction){
		var elapsed=new Date().getTime()-obj.startTime 
		if (elapsed<obj.glidetime){ 
			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{
			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.delaybeforehide)
		}
	},

	ajaxconnect:function(pageurl, divId){
		var page_request = false
		var bustcacheparameter=""
		if (window.XMLHttpRequest) 
			page_request = new XMLHttpRequest()
		else if (window.ActiveXObject){
			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 
		page_request.onreadystatechange=function(){dropdowncontent.loadpage(page_request, divId)}
		if (this.ajaxbustcache) 
			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){
		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
		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}
		subobj.onmouseout=function(e){dropdowncontent.hide(this, subobj, e)}
	}
}

/* search by bedrooms script end */


/* Limit form input to a certain number of characters */

function textareaCounter(textAreaId, counterId, maximumChars) {
if (document.getElementById(textAreaId).value.length > maximumChars) document.getElementById(textAreaId).value = document.getElementById(textAreaId).value.substring(0, maximumChars);
else document.getElementById(counterId).value = maximumChars - document.getElementById(textAreaId).value.length;
}

//textareaCounter('descriptionLong','counter', 250);

/* Limit form input to a certain number of characters */

function textareaCounter1(textAreaId, counterId, maximumChars) {
if (document.getElementById(textAreaId).value.length > maximumChars) document.getElementById(textAreaId).value = document.getElementById(textAreaId).value.substring(0, maximumChars);
else document.getElementById(counterId).value = maximumChars - document.getElementById(textAreaId).value.length;
}

//textareaCounter('descriptionLong','counter', 250);

function verifyForm1()
{
alert('ok');
}
function keyRestrict(e, validchars) {
var key='', keychar='';
key = getKeyCode(e);
if (key == null) return true;
keychar = String.fromCharCode(key);
keychar = keychar.toLowerCase();
validchars = validchars.toLowerCase();
if (validchars.indexOf(keychar) != -1)
return true;
if ( key==null || key==0 || key==8 || key==9 || key==13 || key==27 )
return true;
return false;
}

function getKeyCode(e)
{
if (window.event)
return window.event.keyCode;
else if (e)
return e.which;
else
return null;
}
		

	
	
function verifyForm(theForm){
var msg='';
if(theForm.input_username.value==''){
		msg='Please Type your username'
}else
if((theForm.input_email.value=='blank')||(theForm.input_email.value=='')){
		msg='Please Type your Email Address'
}else
if((theForm.input_email.value.indexOf('@')<1)||
(theForm.input_email.value.indexOf('@')>(theForm.input_email.value.length - 5))||
(theForm.input_email.value.indexOf('.')<1)){
		msg='Please Type a Valid Email Address'
}else
if((theForm.input_password.value=='blank')||(theForm.input_password.value=='')){
		msg='Password'
}else
if((theForm.input_password1.value=='blank')||(theForm.input_password1.value=='')){
		msg='Retype Password'
}else
if((theForm.input_password1.value!=theForm.input_password.value)){
		msg='Passwords don\'t match'
}

if(msg!=''){
		alert(msg);
		return false
}
}
//div show hide
function Opentr(value,id)
{
	if (value=="Other")
	{
		document.getElementById(id).style.display="block";
	}
}
//div show hide end
	


