function printDiv(printpage)
{

//alert("here : "+printpage);

var headstr = "<html><head><title></title></head><body>";
var footstr = "</body>";

tWindow = window.open("", "tWindow", 'toolbar,width=350,height=350,scroll=yes');
tWindow.document.body.innerHTML = document.getElementById(printpage).innerHTML;
tWindow.print();

}
