﻿function Email(){
	//used to hide email address from spam bots
	var user = 'enquiries';
	var domain = 'jadassociates';
	var extension = '.co.uk';
	var subject = 'Contact from website';
	var email = user + '@' + domain + extension
	document.write('<a href=\"mailto:' + email + '?subject=' + subject + '\">' + email +'</a>');
}

function Toggle(strObj) {
	if(document.getElementById(strObj).style.display=='block'){
		document.getElementById(strObj).style.display='none'
	}else{
		document.getElementById(strObj).style.display='block'
	}
}

function MarqueeA(){
	document.write('<marquee onmouseover="this.stop();" onmouseout="this.start();" id="banner" scrolldelay="85">');
}

function MarqueeB(){
	document.write('</marquee>');
}

function GoogleMap(){
	document.write('<iframe width="640" height="480" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Stratford+House,+4+plough+drive,+market+rasen&amp;sll=53.386632,-0.332539&amp;sspn=0.008741,0.022745&amp;g=LN8+3DW&amp;ie=UTF8&amp;cid=53392695,-333280,8094876913899810058&amp;s=AARTsJobptpMTPbFA1POVzix4-TuxGVQqw&amp;ll=53.510918,-0.266418&amp;spn=0.391995,0.878906&amp;z=10&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Stratford+House,+4+plough+drive,+market+rasen&amp;sll=53.386632,-0.332539&amp;sspn=0.008741,0.022745&amp;g=LN8+3DW&amp;ie=UTF8&amp;cid=53392695,-333280,8094876913899810058&amp;ll=53.510918,-0.266418&amp;spn=0.391995,0.878906&amp;z=10&amp;iwloc=A" style="color:#0000FF;text-align:left">View Larger Map</a></small>');
}