function call(num){
	
//open('http://localhost:59449/stwebapi/c?number='+num,'Calling...','width=500,height=150');
//open('chrome://sutwebcall/content/callwindow.html','Calling...','width=500,height=150');
w=open('','windowname','titlebar=no,toolbar=no,width=325,height=125');
with(w.document){
 write("<title>Calling...</title>");
 write("<link rel=\"stylesheet\" type=\"text/css\" href=\"chrome://sutwebcall/content/main.css\" />");
 write("<body>");
 write("<div id=header>");
 write("<center><img src=chrome://sutwebcall/content/images/Click_to_Call_48x48.png>");
 write("<h2>Calling <br> "+num+"</h2>");
 write("<font size=-1>Sametime Unified Telephony</font>");
 write("</div>");
 write("<p><p><p><p>");
 write("<iframe src=http://localhost:59449/stwebapi/c2c?number="+num+" width=0 height=0 border=0></iframe>");
 write("</center></body>");
 setTimeout("w.close();", 4000);
  
}


}

