// JavaScript Document

function nw(strURL,strLabel) {

newwindow=window.open("","newwindow","height=625,width=820,status=0,toolbar=0,menubar=0,location=0,resizable=1");

//newwindow.moveTo(50,50);

newwindow.document.write("<html>");
newwindow.document.write("<head>");
newwindow.document.write("<title>Longere :: ");
newwindow.document.write(strLabel);
newwindow.document.write("</title>");
newwindow.document.write("</head>");
newwindow.document.write("<body>");

newwindow.document.write("<object classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' codebase='http://www.apple.com/qtactivex/qtplugin.cab' height='600' width='800' id='themovie'>");
newwindow.document.write("<param name='src' value='");
newwindow.document.write(strURL);
newwindow.document.write("'>");
newwindow.document.write("<param name='autoplay' value='true'>");
newwindow.document.write("<param name='controller' value='false'>");
newwindow.document.write("<embed height='600' width='800' pluginspage='http://www.apple.com/quicktime/download/' src='");
newwindow.document.write(strURL);
newwindow.document.write("' type='video/quicktime' controller='false' autoplay='true' enablejavascript='true' name='themovie'></embed>");
newwindow.document.write("</object>");



newwindow.document.write("</body>");
newwindow.document.write("</html>");

}

