/* aofunctions.js for AO SURGERY*/

	function playVideo(text){
	   var fenster = window.open("", "video", "width=380,height=350,left=100,top=200,toolbar=no,scrollbars=no,resizable=yes,menubar=no");
	   if (fenster!=null) {
	      fenster.document.open();
	      fenster.document.write("<html><head>");
	      fenster.document.write("<title>Video</title>");
	      fenster.document.write("</head><body onLoad=\"window.focus();\">");
	      	fenster.document.write("<object id=\"RVOCX\" classid=\"clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA\" border=\"0\" height=\"288\" width=\"360\">");
	      	fenster.document.write("<param name=\"controls\" value=\"ImageWindow\">");
	      	fenster.document.write("<param name=\"console\" value=\"_master\">");
	      	fenster.document.write("<param name=\"autostart\" value=\"true\">");
	      	fenster.document.write("<embed src=\""+text+"\"");
		    fenster.document.write(" type=\"audio/x-pn-realaudio-plugin\" console=\"_master\" controls=\"ImageWindow\"");
	      	fenster.document.write(" height=\"288\" width=\"360\" autostart=\"true\" border=\"0\">");
	      	fenster.document.write("</embed>");
	      	fenster.document.write("</object><br>");
	      	fenster.document.write("<object id=\"RVOCX\" classid=\"clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA\" border=\"0\" height=\"36\" width=\"360\">");
	      	fenster.document.write("<param name=\"controls\" value=\"ControlPanel\">");
	      	fenster.document.write("<param name=\"console\" value=\"video1\">");
	      	fenster.document.write("<param name=\"autostart\" value=\"true\">");
	      	fenster.document.write("<param name=\"src\" value=\""+text+"\">");
	      	fenster.document.write("<embed src=\""+text+"\"");
	      	fenster.document.write(" type=\"audio/x-pn-realaudio-plugin\" console=\"video1\" controls=\"ControlPanel\"");
	      	fenster.document.write(" height=\"36\" width=\"360\" autostart=\"true\" border=\"0\">");
	      	fenster.document.write("</embed>");
	      	fenster.document.write("</object>");
	      fenster.document.write("</body></html>");
	      fenster.document.close();
	   }
	}

	function playVideoV2(text){
	
	   var fenster = window.open("", "video", "width=770,height=550,left=100,top=200,toolbar=no,scrollbars=no,resizable=yes,menubar=no");
	   if (fenster!=null) {
	      fenster.document.location = text;
	   }
	}









