//v1.0 COPYRIGHT WEBEDY PTY LTD. ALL RIGHTS RESERVED

//remove search text on focus.
function removeText()
{
	if(document.getElementById('search').value=="search...hit enter")
		{
			document.getElementById('search').value='';
		}
}

//page editing
function pageedit()
	{
		var url=document.getElementById('PageEdit').value;
		if(url=='delete_page.php?<?php echo $weburl; ?>')
		{
			input_box=confirm("Are you sure you want to delete this page? All sub-pages and content will be completely removed! You can set the page to DRAFT if you wish to make it invisible to website visitors.");
			if (input_box==true)
			{ 
			// Output when OK is clicked
			document.location.href=	url;
			}
			else
			{
			// Output when Cancel is clicked
			return false;
			}
		}else{
		//document.location.href=	url;
		document.getElementById('PageEdit').title=url;
		//document.getElementById("PageEdit").className ='thickbox';
		//document.all.PageEdit.title = url;
		}
	}
function otherOption()
	{
		var web=document.getElementById('selotheroption').value;
		document.location.href=	web;
	}	

//top menu drop down
function popup(mylink, windowname, features) 
{ 
if (! window.focus)return true; 
var href; 
if (typeof(mylink) == 'string') 
   href=mylink; 
else 
   href=mylink.href;
var popUp=window.open(href, windowname, features);
popUp.close(); 
window.open(href, windowname, features); 
return false; 
} 

//cancel page return to edit home
function cancelpage()
	{
		document.location.href='edit.php?pid=1';
	}

function textCounter(field,cntfield,maxlimit) {
if (field.value.length > maxlimit) // if too long...trim it!
field.value = field.value.substring(0, maxlimit);
// otherwise, update 'characters left' counter
else
cntfield.value = maxlimit - field.value.length;
}	
/*Check for a special character'***/ 
function isSpclChar(){ 
var iChars = "_!@#$%^&*()+=-[]\\\';,./{}|\":<>?~"; 
        for (var i = 0; i < document.frmPage.pageName.value.length; i++) { 
                if (iChars.indexOf(document.frmPage.pageName.value.charAt(i)) != -1) { 
                alert ("The name of the new page cannot contain any punctuation or symbols. Please enter letters and numbers only."); 
				document.frmPage.pageName.value="";
				document.frmPage.pageName.focus();
                return false; 
        } 
                } 
}
function checkIt()
{
	if(document.frmPage.submenu.checked== false)
		{
			document.frmPage.submenu.value='0';
			
		}
	if(document.frmPage.submenu.checked== true)
		{
			document.frmPage.submenu.value='1';
			
		}
}

//opens popup box
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//alert for decode status 1
function alert_msg1()
{	
alert("This page has been custom built by Webedy and cannot be edited. Contact us for information.");	
}

