var detect = navigator.userAgent.toLowerCase();
var thestring;

function checkIt(string) {
	place = detect.indexOf(string) + 1;
	thestring = string;
	return place;
}


function imprimir () {

		div = document.getElementById('proposta_imprime');
		var WinPrint = window.open('','','letf=0,top=0,width=640,height=800,toolbar=0,scrollbars=0,status=0');
		
		//escreve conteudo da imressao
		WinPrint.document.writeln("<LINK REL='stylesheet' type='text/css' HREF='http://www.netservbrasil.com.br/b2b/resources/styles/styles.css'>");
		WinPrint.document.write(div.innerHTML);
		//WinPrint.document.getElementById('bt_imp').style.display = "none";
		
		WinPrint.document.close();
		WinPrint.focus();
		WinPrint.print();
		WinPrint.close();

}