
function sendToJavaScript(val){
	var winHeight = document.body.clientHeight?document.body.clientHeight:window.innerHeight;
	var winWidth =  document.body.clientWidth?document.body.clientWidth:window.innerWidth;
	var flash = document.getElementById('index');
	var h;
	if(val != true){
		//h = winHeight+250;
		h = winHeight;
		document.getElementById('streetviewDiv').style.visibility = 'hidden';
		flash.setAttribute("height", h+"px");
		flash.setAttribute("width", winWidth+"px");
		//sendToActionScript();
	}else{
		h = winHeight-250;
		flash.setAttribute("height", h+"px");
		flash.setAttribute("width", winWidth+"px");
		document.getElementById('streetviewDiv').style.visibility = 'visible';
	}
}
function sendToActionScript(){
	// stuff // tell map to resize
	//var id = ${application};
	//alert(id);
//	if (navigator.appName.indexOf("Microsoft") != -1) {
 //              window[id].sendToActionScript('boo');
 //         } else {
 //              document[id].sendToActionScript('boo');
 //         }
}


 
