function launchvideo(url){
var w = window.open("", "video", "resizeable, status=no, width=330, height=266");
var d= w.document;
d.write("<HTML><HEAD><TITLE></TITLE><style type='text/css'><!--body {margin-left: 0px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;}--></style></HEAD><BODY background='#ffffff'>")
d.write("<embed type='image/x-quicktime' src='http://cet.emory.edu/eclc/MOVIES/blank.qtif' PLUGIN = 'quicktimeplugin' qtsrc= '" + url + "'width=320 height=256 controller='true'>");
d.write("</BODY></HTML>")
}

function launchvideo2(url){
//var w = window.open("", "video", "resizeable, status=no, width=330, height=266");
//var d= w.document;
document.write("<html><head><title></title></head><body>")
document.write("<object classid='02BF25D5-8C17-4B23-BC80-D3488ABDDC6B'  width=330 height=266>");
document.write("<param name='src' value='" + url + "'>");
document.write("</object>");
document.write("</body></html>")
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}