/* copyright 2009 - ISM Loans */

function pageContent()
{
	var html = '<HTML>\n<HEAD>\n';
	html += '\n<img alt="ISM Educaction Loans" src="../images/logo.gif" border="0" width="200" height="100"/></br>';
	html += '\n<link href="../App_Themes/IsmTheme/IsmTheme.css" rel="stylesheet" type="text/css" />';
	html += '\n</HEAD>\n<BODY>\n<hr size="3">';

	var printReadyElem = document.getElementById("printPart");

	if (printReadyElem != null)
		{
			html += printReadyElem.innerHTML;
		}
	else
		{
			alert("Could not find the printPart div");
			return;
		}
		
    var date = new Date();
	
			html += '<div id="page_footer"><hr size="3"></b>';
    		html += '<b>www.ISMLoans.org</b>';
			html += '<span style="float:right;"><img src="../images/footer_phone.gif" alt="800-476-2002"/></span>';
    		html += '</br>&copy; ';
    		html += date.getFullYear();
    		html += ' ISM Education Loans';
			html += '</br>We never sell personal information.</div>';

	html += '\n</BODY>\n</HTML>';

	return html;
}

function printContent()
{
	var printWin = window.open("","printContent");
	printWin.document.open();
	printWin.document.write(pageContent());
	printWin.document.close();
	printWin.resizeTo(770,900);
	printWin.print();
	printWin.close();  
}

document.getElementById('PrintIt').onclick=function(){printContent()};

function emailContent()
	{
		var strTitle = document.title
		if (strTitle == null)
			{
			strTitle = 'ISM Loans';
		}
         mail_str = "mailto:?subject=" + strTitle ;
         mail_str += "&body=I thought you might be interested in " + strTitle ;
         mail_str += ". You can view it at, " + location.href; 
         location.href = mail_str;
}

document.getElementById('EmailIt').onclick = function() { emailContent() };



