<!--

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 {
    		return true;
    	}
}

function openWindow(URL,name,features) {
	window.open(URL,name,features);
}

function closeWindow() {
	window.close();
}

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('<a href="http://www.gocreative.com" class="credit">Site powered by Gocreative<img src="/assets/images/powered_by.gif" alt="Site powered by Gocreative ContentContributor" height="11" width="135" border="0" align="texttop" /></a>&nbsp;');
}

//-->
