// JavaScript Document
var b = document.createElement('a');

function sendErrorReport (subject, emailBody, displayMsg)
{
	var from = 'info@rootstein2009.com';
	var to = 'artwork@theimageyard.com';
	subject = 'Website Error: ' + subject; //'Automatic Error report from the Rootstein website';
	
	//create the anchor element to hold the image
	var a = document.createElement('b');
	a.id = "thumb4";
	//a.href = "http://domain2011847.sites.fasthosts.com/sitemap.txt";
	a.href = "http://domain2011847.sites.fasthosts.com/send_email.asp?from="+escape(from)+"&to="+escape(to)+"&subject="+escape(subject)+"&displayMsg="+escape(displayMsg)+"&emailBody="+escape(emailBody)+"";
	//alert (a.href);
	//a.href = "http://www.bbc.co.uk";
	a.className="highslide";
	a.onclick= function() {
	   return hs.htmlExpand(a, {align: 'center', objectType: 'iframe', width: 350, heigh: 220, slideshowGroup: 'no-group' } )
	};
	
	a.onclick();
}
