function clearText(thefield){
	if(thefield.defaultValue==thefield.value) {
		thefield.value = "";
	}
}
function addText(thefield){
	if(thefield.value == '') {
		thefield.value = thefield.defaultValue;
	}
}



function PrintFriendly()
{
var url = location.href;

if (url.indexOf("?") >= 0)
    {
    window.open(url + "&print=1");
    }
else
    {
    window.open(url + "?print=1");
    }

}  
