// JavaScript Document
	function _clear(t){		
		if(t._Temp=="" || t._Temp==null || t._Temp==undefined)
			t._Temp = t.value;
		if(t.value==t._Temp)
			t.value="";
	}
	function _check(t){
		if(t.value=="" || t.value==null && t.value != t._Temp)
			t.value = t._Temp;		
	}

function PrintElementID(id, pg) {
		var oPrint, oJan;
		oPrint  = window.document.getElementById(id).innerHTML;
		oJan    = window.open(pg);
		oJan.document.write(oPrint);
		oJan.history.go();
		oJan.window.print();
	}
