

function myfunc(myWindow){
	//alert(sometext);
	//var myTop = window.outerHeight;
	//alert(myTop);
	//myref = window.open("processing.html","confirmWindow","top=" + (myTop/2)+ ",width=500,height=150, toolbar=0,resizable=0");
	//return true;
}

function validate_form(){
	
	if(document.frmListing.txtName.value == ""|| document.frmListing.txtTelephone.value =="" || document.frmListing.txtListing.value =="" || document.frmListing.cboCategory.selectedIndex  == "0"){
	    alert("Please complete all the information required to include your free listing");
	}
	else{
		
	    document.frmListing.submit();
	}	
}

function maxText(what,limit){
if (what.value.length>=limit){
	return false;
}else{
	return true;
}
}

function maxText_old(ctrl, size){
	if (ctrl.value.length > size){
		alert ("Sorry, the listing you have entered is too long and will be reduced to "+size+" characters - please amend as necessary.");
		ctrl.value = ctrl.value.substring(0,size);
		
		ctrl.style.backgroundColor ="#ff3e6f";
		ctrl.style.color ="#ffffff";
		//ctrl.style.BackColor ="#ff0000"; 
	}else{
		ctrl.style.backgroundColor ="#ffffff";
		ctrl.style.color ="#000000";
	}

}
