/*************************************************
**	AUTHOR:	Kevin K. Nelson						**
**	SITE:	http://www.flashfiredesigns.com/	**
**	DESCR:	Print content functions				**
**												**
**	Copyright © 2003, All Rights Reserved		**
**  - Used by permission by Taoti Enterprises   **
*************************************************/

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>Sacramento Maternal-Fetal Medicine</title>\n" +
							"<link rel='stylesheet' type='text/css' href='"+BASE_DIR+"/lib/css/popup_style.css' />\n" +
						  "</head><body onload='window.print();window.close();' style='background-color:white;margin:20px 20px 20px 20px;'>\n" +
						  "<div style='text-align:center;padding-bottom:40px;'><img src='lib/images/sacmfm_logo_heading.gif' width='600' height='150' ></div>" +
							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=660, height=660");
	}

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