//<!--


function forsure(text)
{

         Check = confirm( text);

         if(Check == false)
         {
                  return false;
         }

         return true;
}

function popup(w,h,site,_id) 
{
        //mittig ausrichten
        x = screen.availWidth/2-w/2;
        y = screen.availHeight/2-h/2;
        
        myWin=window.open(
        site,_id,'width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y);


}

function popup_scroll(w,h,site,_id) 
{
        //mittig ausrichten
        x = screen.availWidth/2-w/2;
        y = screen.availHeight/2-h/2;
        
        myWin=window.open(
        site,_id,'width='+w+',height='+h+',scrollbars=yes,left='+x+',top='+y+',screenX='+x+',screenY='+y);
        

}

function CreateFlashControl(mediaFile, title, width, height) {
  document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + ' codebase = "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"'
    + ' title="' + title + '" width="' + width + '" height="' + height + '">'
    + '<param name="movie" value="' + mediaFile + '" />'
    + '<param name="quality" value="high" />'
    + '<param name="wmode" value="transparent" />'
    + '<embed src="' + mediaFile + '" quality="high"'
    + ' pluginspage="http://www.macromedia.com/go/getflashplayer"'
    + ' type="application/x-shockwave-flash"'
    + ' wmode="transparent" width="' + width + '" height="' + height + '"></embed></object>');
}


function start()
{

		w = 780;
		h = 610;
		x = screen.availWidth/2-w/2;
    y = screen.availHeight/2-h/2;
        
    window.open( 'index.html','ViRoN','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y);
}


//-->
