var g_newWindow;

function getTagByID( p_strID ) {
	return document.all ? document.all[ p_strID ] : document.getElementById( p_strID );
}

function printContent( p_strTagID, p_strStyleSheet ) {
	var strHTML			= "<html><head>\n" +
							"<title>Print Essay</title>\n" +
							"<link rel='stylesheet' type='text/css' href='" + p_strStyleSheet + "' />\n" +
						  "</head><body onload='window.print();window.close();' style='background-color:white;margin:20px 20px 20px 20px;'>\n" +
							getTagByID( p_strTagID ).innerHTML +
						  "</body></html>";
	
	openWindow_write( strHTML );
}

function openWindow_write( p_strHTML ) {

	if(!g_newWindow || g_newWindow.closed) {
		g_newWindow				= window.open("", "g_newWindow", "status, scrollbars, resizable, width=600, height=400");
	}

	g_newWindow.focus();
	g_newWindow.document.open();
	g_newWindow.document.write( p_strHTML );
	g_newWindow.document.close();
}