function printThis(){
	var ans;
	if (window.print) {
		ans= confirm("Click Here To print This Page");
		if(ans)
			window.print();
	}
}
