﻿// JScript File

//switch languages
function switchlanguage_el()
{
    var s = new String(self.location);
    s = s.replace(/\/en/,"/el");
    document.write("")
    document.location.href=s
}
function switchlanguage_en()
{
    var s = new String(self.location);
    s = s.replace(/\/el/,"/en");
    document.write("")
    document.location.href=s
}

//load flash
function RunFlash(shape)
{
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" height="175" width="175">');
    document.write('<param name="movie" value="http://192.168.1.3/magicconcepts/flash/cube.swf" />\n');
    document.write('<param name="quality" value="high" />\n');
    document.write('<embed src="../../flash/' + shape + '.swf" height="175" width="175"></embed>\n');
    document.write('</object>\n');
}
