﻿function openWin(doc,width,height)
{
      	win=window.open(doc,"","screenX="+width+",screenY="+height+",scrollbars=1,resizable=1,width="+width+",height="+height+",status=0,toolbar=1,menubar=0");
      	win.focus();
}

function openWinStripped(doc,width,height)
{
      	win=window.open(doc,"","screenX="+width+",screenY="+height+",scrollbars=0,resizable=0,width="+width+",height="+height+",status=0,toolbar=0,menubar=0");
      	win.focus();
}

function openPrenPopup()
{
    var LocationHref = new String(""+location.href);
    var PopUpUrl = "/prenpopup.aspx";
    
    if (LocationHref.indexOf("localhost", 0) != -1)
        PopUpUrl = "/gardochtorp" + PopUpUrl;

    openWinStripped(PopUpUrl, 780, 580);
}

function SetFocus(elementId)
{
    var element = document.getElementById(elementId);
    element.focus();
}

function CreateBanner(BannerId1, BannerId2)
{
    document.write('<scr'+'ipt language="javascript1.1" src="http://adserver.adtech.de/addyn|3.0|83|'+BannerId1+'|0|'+BannerId2+'|ADTECH;loc=100;target=_blank;key=key1+key2+key3+key4;grp=[group];misc='+new Date().getTime()+'"></scri'+'pt>');
}

function DisplayAndHide(ShowId, ElementHide)
{
    document.getElementById(ShowId).style.display = 'block';    
    document.getElementById(ElementHide).style.display = 'none';    
}






