function getPrint(print_area) {	
	var pp = window.open("","","width=400, height=300, scrollbars=yes, resizable=yes");
	
	
	pp.document.writeln('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">');
	pp.document.writeln('<HEAD><title>Listagem</title>');
	pp.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>');
	//pp.document.writeln('<LINK href="/estilos/aepformacao.css" type="text/css" rel="stylesheet">');
	pp.document.writeln('<LINK href="/estilos/printstyle.css" type="text/css" rel="stylesheet">');
	//pp.document.writeln('<LINK href="/estilos/printstyle.css" type="text/css" rel="stylesheet" media="print">');
	//pp.document.writeln('<base target="_self"></HEAD>');
	pp.document.writeln('</HEAD>');
	pp.document.writeln('<body MS_POSITIONING="GridLayout" bottomMargin="0" leftMargin="0" topMargin="0" rightMargin="0" onAfterPrint="setTimeout(\'top.close();\',5000);">');
	pp.document.writeln('<img src="/images/lstLogo.gif">');
	pp.document.writeln('<form  method="post">');
	pp.document.writeln(document.getElementById(print_area).innerHTML);
	pp.document.writeln('</form>');
    pp.document.writeln('<script language="javascript">');
    pp.document.writeln('window.print();');
    pp.document.writeln('</script>');
    pp.document.writeln('</body></HTML>');
    pp.location.reload();
}

function InStr(strSearch, charSearchFor) {
	for (i=0; i < strSearch.length; i++) {
		if (charSearchFor == Mid(strSearch, i, 1)) {
			return i;
       	}
    }
    return -1;
}

function Mid(str, start, len) {
    if (start < 0 || len < 0) return "";
    var iEnd, iLen = String(str).length;
    if (start + len > iLen)
          iEnd = iLen;
    else
          iEnd = start + len;
    return String(str).substring(start,iEnd);
}

function NovaJanela (pg, tit, extras) {
	window.open(pg, tit, extras);
}