function myPopHelp(pDestination)
{
    var objDate = new Date();
    nWindow = window.open ('include/help/' + pDestination,'KLACKHelp','width=640,height=400,dependent=yes,resizable=yes,scrollbars=YES,toolbar=yes,Left=10,Top=10,status=no,directories=no,menubar=no,location=tabelle');
    nWindow.self.focus();
}

function mySaveTv(pSaveTvLink)
{
    var vLeft=200;
    var vTop=75;
      nWindow = window.open (pSaveTvLink,new Date().getTime(),'width=465,height=370,dependent=yes,resizable=yes,scrollbars=no,toolbar=no,Left='+vLeft+',Top='+vTop+',status=no,directories=no,menubar=no,location=tabelle');
    nWindow.self.focus();
}

function myPopMerk(pTvId,pWinname)
{
    var vWidth=300;
    var vHeight=160;
    var vLeft=100;
    var vTop=75;
    var objDate = new Date();
    var vMs=objDate.getTime();
    var vWinname=vMs;

    nWindow = window.open ("./include/TvMBPopup.php?TVID="+pTvId+"&DUMMY="+vMs,vWinname,'width='+vWidth+',height='+vHeight+',dependent=yes,resizable=yes,scrollbars=no,toolbar=no,Left='+vLeft+ ',Top=' + vTop + ',status=no,directories=no,menubar=no,location=tabelle');
nWindow.self.focus();
}


/*
function myPopup(pDestination,pWinname,pBig) 
{
    var vWidth=650;
    var vHeight=470;
    var vLeft=250;
    var vTop=75;

    if (screen)
    {
	    if (pBig == true)
	    {
		    vWidth = screen.width;
		  
            if (vWidth > 850)
		        vWidth = 850;

			vHeigth = screen.width / 2;
			if (vHeight > 520)
			  vHeigth = 520;
	    }
	    else
	    {
		    vWidth = screen.width / 2;
			if (vWidth > 650)
			  vWidth = 650;
			if (vWidth < 650)
			  vWidth = 650;
			vHeigth = screen.width / 2;
			if (vHeight > 470)
			  vHeigth = 470;
			}	
	 if ((vLeft + vWidth + 10) > screen.width)
		  vLeft = screen.width - vWidth - 10;	  
	 if ((vTop + vHeight + 50) > screen.height)
			vTop = screen.height - vHeight - 50;	  
		}
	
nWindow = window.open (pDestination,pWinname,'width='+vWidth+',height='+vHeight+',resizable=yes,scrollbars=YES,toolbar=no,Left='+vLeft+',Top='+vTop+',status=no,directories=no,menubar=no,location=tabelle');
nWindow.self.focus();
}
*/
function myPopup(pDestination,pWinname,pBig) 
{
	if(pDestination.indexOf('include/TvPopup.php') == -1 || USE_DETAILS_POPUP == true) {
		var vWidth=650;
		var vHeight=470;
		var vLeft=250;
		var vTop=75;
	
		if (screen)
		{
			if (pBig == true)
			{
				vWidth = screen.width;
			
				if (vWidth > 850)
					vWidth = 850;
	
				vHeigth = screen.width / 2;
				if (vHeight > 520)
				vHeigth = 520;
			}
			else
			{
				vWidth = screen.width / 2;
				if (vWidth > 650)
				vWidth = 650;
				if (vWidth < 650)
				vWidth = 650;
				vHeigth = screen.width / 2;
				if (vHeight > 470)
				vHeigth = 470;
				}	
		if ((vLeft + vWidth + 10) > screen.width)
			vLeft = screen.width - vWidth - 10;	  
		if ((vTop + vHeight + 50) > screen.height)
				vTop = screen.height - vHeight - 50;	  
			}
		
		nWindow = window.open(pDestination,pWinname,'width='+vWidth+',height='+vHeight+',resizable=yes,scrollbars=YES,toolbar=no,Left='+vLeft+',Top='+vTop+',status=no,directories=no,menubar=no,location=tabelle');
		nWindow.self.focus();
	} else {
		window.location.href = "index.php?page=TvDetails&ID=" + pWinname;
	}
}