﻿function Show(fullname,id)
{
    document.getElementById("diag_title").innerHTML=fullname;
   document.getElementById("main_iframe").src="course_news_content.aspx?nid="+id;
   Dialog1.Show();
}
function ShowContent(id)
{
    document.getElementById("main_iframe").innerHTML=document.getElementById(id).innerHTML;
    Dialog1.Show();
}
function ShowMaps(latitude,longitude,fullname)
{
   //document.getElementById("main_iframe").innerHTML="<iframe src='ggmap.aspx?latitude="+escape(latitude)+"&longitude="+escape(longitude)+"&fullname="+escape(fullname)+"' frameborder='1' width='800' height='500' scrolling='no'></iframe>";
   window.open("ggmap.aspx?latitude="+escape(latitude)+"&longitude="+escape(longitude)+"&fullname="+escape(fullname),"map","height=500,width=800");
   //Dialog1.Show();
   
}
/*
<div id="test" style="display:none"><font color="red"><div style="width:800px;height:600px;">asdfasdfasdf</div></font></div>
    <input type="button" id="showclose" onclick="ShowContent('test');" value="Show Dialog" />
     <input type="button" value="Show Maps" onclick="ShowMaps(31.2303899 ,121.518037,'良友大厦')" />
*/
