<!--

function Clear(theText) {
	if (theText.value == theText.defaultValue) {
	theText.value = ""
	}
}	

function isBlank() {
	value=document.searchform.elements['SearchString'].value;
	if ( value == "" ){
        	alert("Please enter search word");
        	return false;
    	}
	else if ( value == " Search wodonga.vic.gov.au" ){
        	alert("Please enter search word");
        	return false;
    	}
    	else {
    		return true;
    	}
}	

function isBBlank() {
	value=document.searchform.elements['SearchString'].value;
	if ( value == "" ){
        	alert("Please enter search word");
        	return false;
    	}
	else if ( value == " Search Business/Investment" ){
        	alert("Please enter search word");
        	return false;
    	}
    	else {
    		return true;
    	}
}

function openWindow(URL,name,features) {
	window.open(URL,name,features);
}

function closeWindow() {
	window.close();
}

function mask() {
        var host = "wangarattaunlimited.com.au";
        var user = "info";
        document.write("<a href='mailto:");
        document.write(user);
        document.write("@");
        document.write(host);
        document.write("'>");
        document.write(user);
        document.write("@");
        document.write(host);
        document.write("</a>");
}

var date = new Date();
var year = date.getFullYear();

function lastModified() {
	var date = new Date(document.lastModified);
	var day = date.getDate();
	var month = [date.getMonth() + 1];
	var year = date.getYear();
	if (day < 10) day = "0" + day;
	if (month < 10) month = "0" + month;
	if (year < 2000) year += 1900;
	document.write(day + "-" + month + "-" + year);
}

function credit() {
	document.write('Powered by GoCreative <a href="http://www.gocreative.com/" id="cc"><img src="/assets/images/cc.gif" width="129" height="9" alt="ContentContributer" /></a>');
}

//-->
