//v1
// Developed By IME Informatics
// Detect Client Browser type
// Copyright 2009

function printDay()
{
	var d = "{site__downloads_banners_ctime}"
	var a = d.charAt(8);
	a = a + d.charAt(9);
	document.write(a);
}

function printMonth()
{
}

function printYear()
{
}

//Initialize the html
function searchFormOnLoad(defVal){

	var f = document.getElementById("searchForm");
	f.search.value = defVal;


}

//Initialize the Login Form
function loginFormOnLoad(defVal){

	var i = document.getElementById("signUpForm");
	i.user.value = defVal;
	i.pass.value = "pass"


}

// Form Module
function lostfocusForm(obj, defVal)
{
	if (obj.value == "") {
		obj.value = defVal;
	}

}

function getFocusForm(obj, defVal)
{
	if (obj.value == defVal) {
		obj.value = "";
	}
}
