function openPopUp(_name,_page,_width,_height,_scroll){
	window.open(_page,_name,"width=" + _width + ",height=" + _height + ",toolbar=no,resizable=no,scrollbars=" + _scroll + "");
}

function printDiv(divToPrint)
{
	var a = window. open('','','scrollbars=no,width=1,height=1');

	a.document.open("text/html");
	a.document.write('<html><head><link rel="stylesheet" href="../../../css/common.css" /></head><body>');
	a.document.write(document.getElementById(divToPrint).innerHTML);
	a.document.write('</body></html>');
	a.document.close();
	a.print();
	a.close();
}
