// Common functions and display items for IDON EAST Pages
var gAutoPrint = true; // Tells whether to automatically call the print function

function printSpecial()	{
	
	if (document.getElementById != null) {
		var html = '<html>\n<head>\n';

		if (document.getElementsByTagName != null) {
			var headTags = document.getElementsByTagName("head");
			if (headTags.length > 0)
				html += headTags[0].innerHTML;
		}

		html += '\n</head>\n<body>\n';

		var printReadyElem = document.getElementById("printReady");

		if (printReadyElem != null)	{
			html += printReadyElem.innerHTML;
		} else {
			alert("Could not find the printReady function");
			return;
		}

		html += '\n</body>\n</html>';

		var printWin = window.open("","printSpecial");
		
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		
		if (gAutoPrint) { printWin.print(); }
	
	} else {
		alert("The print ready feature is only available if you are using an browser. Please update your browswer.");
	}
}

function AddBookmark()	{
	
	var title = "IDON EAST Corporation";
	var url = "http://www.idoneast.com";
	
	if (window.sidebar) { 
		window.sidebar.addPanel(title, url,""); 
	} else if( document.all ) {
		window.external.AddFavorite( url, title);
	} else if( window.opera && window.print ) {
		return true;
	}
}

function ShowFooter() {
	
	document.write("<br>");
	document.write("");
	document.write("<a href='javascript:void(printSpecial())' style='text-decoration: none'>");
	document.write("<img src='images/print.gif' border='0' align='absmiddle'>");
	document.write("<span class='printstyle'>print this page</span>");
	document.write("</a> ");
	document.write("&nbsp;&nbsp;");
	document.write("");
			
	document.write("<a href='javascript:void(AddBookmark())' style='text-decoration: none'>");
	document.write("<img src='images/add.gif' border='0'>");
	document.write("<span class='bookmarkstyle'>add to favorites</span>");
	document.write("</a> ");
	document.write("&nbsp;&nbsp;");
	
	document.write("<a href='idoneast_presskit.pdf' target='_blank' style='text-decoration: none'>");
	document.write("<img src='images/pdf_icon.gif' border='0'>");
	document.write("<span class='bookmarkstyle'>download press kit</span>");
	document.write("</a> ");
	
		
	document.write("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;");
	document.write("<span class='footerdetails'>Phone: (709) 739-6262</span>&nbsp;&nbsp;&nbsp;");
	document.write("<span class='footerdetails'>Fax: (709) 739-6263</span>&nbsp;&nbsp;&nbsp;");
	document.write("<span class='footerdetails'>E-mail:</span> <a href='mailto:mail@idoneast.com' style='text-decoration: none'><span class='footerdetailslarge'>mail@idoneast.com</span></a>");
	document.write("<br>");
	document.write("<span class='footerdetails'>Copyright &copy; 2010 IDON EAST Corporation. All Rights Reserved.</span>");	
		
}

function DisplayNewsLink(sDate,sTitle,sURL) {
	
	document.write("<img src='images/bullet.gif' border='0'>");
	document.write("<span class='newslinkdate'>" + sDate + "</span>");
	//document.write("<br>");
	document.write("<span class='newslink'> - </span>");
	document.write("<span class='newslink'>" + sTitle + "</span>");
	if (sURL != '') {
		DisplayReadMore(sURL);
	}
	document.write("<br><br>");
				
}

function DisplayReadMore(sURL) {
	
	document.write("<div align='right'>");
	document.write("<a href='" + sURL + "' style='text-decoration: none'><img src='images/read_more.gif' border='0' align='middle'> <span align='right' class='newslinkreadmore'>read more</span></a>");
	document.write("</div>");
				
}

function SectionHead(sTitle) {					
				
	document.write("<img src='images/bullet_title.gif' border='0'> ");
	document.write("<span class='sectionhead'>" + sTitle + "</span>");
	document.write("<br><br>");
				
}

function Headquarters() {

	document.write("<span class='contenttitle'>Headquarters:</span><br><br>");
	document.write("<div class='contentindent10'>");
	document.write("51 Clyde Avenue<br>");
	document.write("Mount Pearl, NL<br>");
	document.write("Canada, A1N 4R8<br>");
	document.write("Tel:  (709) 739-6262<br>");
	document.write("Fax: (709) 739-6263<br>");
	document.write("email: <a href='mailto:mail@idoneast.com'>mail@idoneast.com</a>");
	document.write("</div>");	
			
}

function Headquarters_a() {

	document.write("<span class='contenttitle'>Ottawa Address:</span><br><br>");
	document.write("<div class='contentindent10'>");
	document.write("80 Waverley Street<br>");
	document.write("Ottawa, ON<br>");
	document.write("Canada, K2P 0V2<br>");
	document.write("Tel: (613) 233-3040<br>");
	document.write("email: <a href='mailto:hbown@idoneast.com'>hbown@idoneast.com</a>");
	document.write("</div>");	
			
}

function Headquarters_b() {

	document.write("<span class='contenttitle'>Calgary Address:</span><br><br>");
	document.write("<div class='contentindent10'>");
	document.write("50 Sheep River Crescent<br>");
	document.write("Okotoks, AB<br>");
	document.write("Canada, T1S 1R3<br>");
	document.write("Tel: (403) 995-1144<br>");
	document.write("email: <a href='mailto:dbown@idoneast.com'>dbown@idoneast.com</a>");
	document.write("</div>");	
			
}