function emailPage()
{
	location.href = "mailto:?subject=Check out this web page : " + document.title + "&body=Hello,%0A%0AI thought you might be interested in this web page : " + document.title + "%0A%0AYou can view it at : " + escape(location.href);
}

function bookmarkPage()
{
	if (window.sidebar)
	{
		// Mozilla Firefox Bookmark

		window.sidebar.addPanel(document.title, location.href,"");

	}
	else 
	{
		if (window.external) 
		{ 
			// IE Favorite
			
			window.external.AddFavorite( location.href, document.title);
		}
		else 
		{
			if (window.opera && window.print)
			{ 
				// Opera Hotlist
		
				return true;
			}
		}
	}
}

function printPage()
{
	window.print();
}

function autoIframe(frameId)
{
	alert("auto resizing");
	try
	{
		frame = document.getElementById(frameId);
		innerDoc = (frame.contentDocument) ? frame.contentDocument : frame.contentWindow.document;
		objToResize = (frame.style) ? frame.style : frame;
		objToResize.height = innerDoc.body.scrollHeight + 10;
	}
	catch(err)
	{
		//window.status = err.message;
		alert(err.message);
	}
}

