function loadMap(str){

	var syd = '<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Bright+Blue+Solutions,+Sydney&amp;sll=-37.817378,144.958012&amp;sspn=0.013273,0.01929&amp;ie=UTF8&amp;hq=Bright+Blue+Solutions,&amp;hnear=Sydney+NSW,+Australia&amp;cid=6968843684425230569&amp;ll=-33.855734,151.213074&amp;spn=0.024947,0.036478&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe>';

	var mel = '<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Bright+Blue+Solutions,+Melbourne&amp;sll=-33.86679,151.208836&amp;sspn=0.006975,0.013733&amp;ie=UTF8&amp;hq=Bright+Blue+Solutions,&amp;hnear=Melbourne+VIC,+Australia&amp;cid=8733170259817589922&amp;ll=-37.807071,144.962196&amp;spn=0.023735,0.036478&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe>';

	var can = '<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Bright+Blue+Solutions,+Canberra&amp;sll=-33.867004,151.208843&amp;sspn=0.006975,0.009645&amp;ie=UTF8&amp;hq=Bright+Blue+Solutions,&amp;hnear=Canberra+ACT,+Australia&amp;cid=5639775538742794113&amp;ll=-35.273513,149.127688&amp;spn=0.006131,0.00912&amp;z=16&amp;iwloc=A&amp;output=embed"></iframe>';

	document.getElementById("storeState").value = str;
	Shadowbox.open({
        player:     'html',
        content:    eval(str),
        height:     350,
        width:      425
    });
}


function enlargeMap(){

	var syd = "http://maps.google.com/maps?f=q&source=embed&hl=en&geocode=&q=Bright+Blue+Solutions,+Sydney&sll=-37.817378,144.958012&sspn=0.013273,0.01929&ie=UTF8&hq=Bright+Blue+Solutions,&hnear=Sydney+NSW,+Australia&cid=6968843684425230569&ll=-33.855734,151.213074&spn=0.024947,0.036478&z=14&";

	var mel = "http://maps.google.com/maps?f=q&source=embed&hl=en&geocode=&q=Bright+Blue+Solutions,+Melbourne&sll=-33.86679,151.208836&sspn=0.006975,0.013733&ie=UTF8&hq=Bright+Blue+Solutions,&hnear=Melbourne+VIC,+Australia&cid=8733170259817589922&ll=-37.807071,144.962196&spn=0.023735,0.036478&z=14&";

	var can = "http://maps.google.com/maps?f=q&source=embed&hl=en&geocode=&q=Bright+Blue+Solutions,+Canberra&sll=-33.867004,151.208843&sspn=0.006975,0.009645&ie=UTF8&hq=Bright+Blue+Solutions,&hnear=Canberra+ACT,+Australia&cid=5639775538742794113&ll=-35.273513,149.127688&spn=0.006131,0.00912&z=16&";

	Shadowbox.close();

	var tempElement = document.getElementById("storeState").value;

	window.open(eval(tempElement), "_blank");
}