function flash(swf, page, position) {

    swf = swf + "?selida=" + page + "&thesi=" + position;

    document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\"");
    document.write(" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\"");
    document.write(" width='100%' height='100%'");
    document.write(" align=\"middle\">");
    document.write("<param name=\"allowScriptAccess\" value=\"sameDomain\" />");
    document.write("<param name=\"movie\" value=\"");
    document.write(swf);
    document.write("\" />");
    document.write("<param name=\"menu\" value=\"false\" />");
    document.write("<param name=\"quality\" value=\"high\" />");
    //document.write("<param name=\"wmode\" value=\"transparent\" />");
    document.write("<param name=\"bgcolor\" value=\"#090909\" />");
    document.write("<param name=\"SCALE\" value=\"noscale\" />");
    document.write("<embed");
    document.write(" src=\"");
    document.write(swf);
    document.write("\" width=\"100%\" height=\"100%\"");
    document.write(" align=\"middle\"");
    document.write(" menu=\"false\"");
    document.write(" quality=\"high\"");
    //document.write(" wmode=\"transparent\"");
    document.write(" bgcolor=\"#090909\"");
    document.write(" allowscriptaccess=\"sameDomain\"");
    document.write(" type=\"application/x-shockwave-flash\"");
    document.write(" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"");
    document.write(" scale=\"noscale\" />");
    document.write("</object>");
}

function flashTransparent(swf, page, position) {

    swf = swf + "?selida=" + page + "&thesi=" + position;

    document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\"");
    document.write(" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\"");
    document.write(" width='100%' height='100%'");
    document.write(" align=\"middle\">");
    document.write("<param name=\"allowScriptAccess\" value=\"sameDomain\" />");
    document.write("<param name=\"movie\" value=\"");
    document.write(swf);
    document.write("\" />");
    document.write("<param name=\"menu\" value=\"false\" />");
    document.write("<param name=\"quality\" value=\"high\" />");
    document.write("<param name=\"wmode\" value=\"transparent\" />");
    document.write("<param name=\"bgcolor\" value=\"#090909\" />");
    document.write("<param name=\"SCALE\" value=\"noscale\" />");
    document.write("<embed");
    document.write(" src=\"");
    document.write(swf);
    document.write("\" width=\"100%\" height=\"100%\"");
    document.write(" align=\"middle\"");
    document.write(" menu=\"false\"");
    document.write(" quality=\"high\"");
    document.write(" wmode=\"transparent\"");
    document.write(" bgcolor=\"#090909\"");
    document.write(" allowscriptaccess=\"sameDomain\"");
    document.write(" type=\"application/x-shockwave-flash\"");
    document.write(" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"");
    document.write(" scale=\"noscale\" />");
    document.write("</object>");
}

function openUrl(htm) {
    position = document.location.search.substring(1);
    location = htm + "?" + position;
}

function openNewWindow(URL, windowName, winWidth, winHeight, windowProperties) {
    xposition = (screen.width - winWidth) / 2;
    yposition = (screen.height - winHeight - 60) / 2; //60 is an estimated height of the ie menu

    windowProperties = "width=" + winWidth + ","
											+ "height=" + winHeight + ","
											+ "location=" + (1 === false) + ","
											+ "menubar=0,"
											+ "resizable=0,"
											+ "scrollbars=0,"
											+ "status=0,"
											+ "titlebar=0,"
											+ "toolbar=0,"
											+ "hotkeys=0,"
											+ "screenx=" + xposition + "," //NN Only
											+ "screeny=" + yposition + "," //NN Only
											+ "left=" + xposition + "," //IE Only
											+ "top=" + yposition; //IE Only 

    newWindow = window.open(URL, windowName, windowProperties);

}


function popUpFlash(swf) {

    document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\"");
    document.write(" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab\"");
    document.write(" width='100%' height='100%'");
    document.write(" align=\"middle\">");
    document.write("<param name=\"allowScriptAccess\" value=\"sameDomain\" />");
    document.write("<param name=\"movie\" value=\"");
    document.write(swf);
    document.write("\" />");
    document.write("<param name=\"menu\" value=\"false\" />");
    document.write("<param name=\"quality\" value=\"high\" />");
    //document.write("<param name=\"wmode\" value=\"transparent\" />");
    document.write("<param name=\"bgcolor\" value=\"#000000\" />");
    document.write("<param name=\"SCALE\" value=\"noscale\" />");
    document.write("<embed");
    document.write(" src=\"");
    document.write(swf);
    document.write("\" width=\"100%\" height=\"440\"");
    document.write(" align=\"middle\"");
    document.write(" menu=\"false\"");
    document.write(" quality=\"high\"");
    //document.write(" wmode=\"transparent\"");
    document.write(" bgcolor=\"#000000\"");
    document.write(" allowscriptaccess=\"sameDomain\"");
    document.write(" type=\"application/x-shockwave-flash\"");
    document.write(" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"");
    document.write(" scale=\"noscale\" />");
    document.write("</object>");
}
