// common js kode til netværk
//Clear arvede frames

if (parent != self) {
                top.location=self.document.location;
}

//tilfældigt nummer dc
//var ord = Math.round(Math.random() * 10000000000);
var abc = Math.random() + "";
var ord = abc.substring(2,abc.length);

//kald stylesheet uanset browser
document.write('<link rel="STYLESHEET" type="text/css" href="/styles/main.css">');

//Delte funktioner

function PlayerOpen(soundfiledesc,soundfilepath, width, height) {
   winPadding = 100;//for the header and caption
   if (!width){
      winWidth=320;
      width   =300;
   }
   else{
   winWidth   = winPadding  + Number(width);
   }

   if(!height){
      winHeight=190;
      height = 42;
   }
   else{
      winHeight   = winPadding  + Number(height);                              
   }


	PlayWin = window.open('','Player','width=' + winWidth + ',height=' + winHeight + ',top=0,left=0,resizable=0,scrollbars=0,titlebar=0,toolbar=0,menubar=0,status=0,directories=0');

    PlayWin.focus();

    PlayWin.document.write("<html><head><title>" + soundfiledesc + "</title>");
	PlayWin.document.write("<link rel='STYLESHEET' type='text/css' href='/styles/main.css' /></head>");
	PlayWin.document.write("<body bgcolor='#ffffff'>");
    PlayWin.document.write("<b style ='font-size:18px;font-family:Verdana,sans-serif;line-height:1.5'>" + soundfiledesc + "</b>");
    PlayWin.document.write("<div align='center'><object width='" + width + "' height='" + height + "' >");
    PlayWin.document.write("<param name='SRC' value='" +  soundfilepath + "'>");
    PlayWin.document.write("<param name='AUTOPLAY' VALUE='true'>");
    PlayWin.document.write("<param name='CONTROLLER' VALUE='true'>");
    PlayWin.document.write("<embed src ='" + soundfilepath + "' autostart='true' loop='false' width='" + width + "' height='" + height + "' controller='true' bgcolor='#ffffff' >");
    PlayWin.document.write("</embed></object></div>");

    PlayWin.document.write("<p style='font-size:12px;font-family:Verdana,sans-serif;text-align:center'><a href='" + soundfilepath +"'>Download this file</a> <span style='font-size:10px'>(right-click or Option-click)</span></p>");
	PlayWin.document.write("<form><div align='center'><input type='button' value='Close this window' OnClick='javascript:window.close();'></div></form>");

    PlayWin.document.write("</body></html>");

    PlayWin.document.close(); // "Finalizes" new window
}


function PopImage(filedesc,filepath,origwidth,origheight,caption) {
	winPadding = 100;//for the header and caption
	winWidth   = winPadding  + Number(origwidth);
   winHeight  = winPadding  + Number(origheight);
	
    PlayWin = window.open('','Image','width=' + winWidth + ',height=' + winHeight + ',resizable=1,scrollbars=1,titlebar=0,toolbar=0,menubar=0,status=0,directories=0');
	PlayWin.document.write("<html><head><title>" + filedesc + "</title>");
	PlayWin.document.write("<link rel='STYLESHEET' type='text/css' href='/styles/main.css' /></head>");
    PlayWin.document.write("<body bgcolor='#ffffff'>");
    PlayWin.document.write("<div align='center' >");
    PlayWin.document.write("<h3>" + filedesc + "</h3>");
    PlayWin.document.write("<div style='width:" + origwidth + "px;text-align:left; '>");
    PlayWin.document.write("<img src='" + filepath + "' id='image1' name='image1' alt='" + filedesc + "' width='" + origwidth + "' height='" + origheight + "'title='" +filedesc + "' />");
    PlayWin.document.write("<p class='secondary'>" + caption + "</p>");
    PlayWin.document.write("</div>");
    PlayWin.document.write("<form><input type='button' value='Close this window' onclick='javascript:window.close()'><br /><br />");
    PlayWin.document.write("</div>");
    PlayWin.document.write("</form>");
    PlayWin.document.write("</body></html>");

    PlayWin.document.close();
}
