function mapphoto(url){
	var imgurl = url;
	if (document.all){
		instphoto.style.backgroundImage='url('+imgurl+')';
	} else if(document.getElementById && !document.all) {
		document.getElementById("instphoto").style.backgroundImage='url('+imgurl+')';
	}
}

