﻿function popUp(popPath,popWidth,popHeight,popLeft,popTop)
		{
		  popWidth = ',width=' + popWidth;
		  popHeight = ',height=' + popHeight;
		  popLeft = ',Left=0' + (window.screenLeft + popLeft);
		  popTop = ',Top=0' + (window.screenTop + popTop);
		  
		  window.open(popPath,"_blank","toolbar=no,resizable=yes,location=no,status=no,menubar=no,scrollbars=no"+popWidth+popHeight+popLeft+popTop);
		}
		
function popUpFixed(popPath,popWidth,popHeight,popLeft,popTop)
		{
		  popWidth = ',width=' + popWidth;
		  popHeight = ',height=' + popHeight;
		  popLeft = ',Left=0' + (window.screenLeft + popLeft);
		  popTop = ',Top=0' + (window.screenTop + popTop);
		  
		  window.open(popPath,"_blank","toolbar=no,resizable=no,location=no,status=no,menubar=no,scrollbars=no"+popWidth+popHeight+popLeft+popTop);
		}

function popUpWithDetails(popPath,popWidth,popHeight,popLeft,popTop)
    {
      popWidth = ',width=' + popWidth;
      popHeight = ',height=' + popHeight;
      popLeft = ',Left=0' + (window.screenLeft + popLeft);
      popTop = ',Top=0' + (window.screenTop + popTop);
      title = window.document.title;
      title = title.replace("&","and")
      url   = encodeURIComponent(window.document.URL);
      window.open(popPath+"?t="+ title +"&u="+ url,"_blank","toolbar=no,resizable=yes,location=no,status=no,menubar=no,scrollbars=no"+popWidth+popHeight+popLeft+popTop);
    }
			
function popUpScroll(popPath,popWidth,popHeight,popLeft,popTop)
		{
			popWidth = ',width=' + popWidth;
			popHeight = ',height=' + popHeight;
			popLeft = ',Left=0' + (window.screenLeft + popLeft);
			popTop = ',Top=0' + (window.screenTop + popTop);
			
			window.open(popPath,"_blank","toolbar=no,resizable=yes,location=no,status=no,menubar=no,scrollbars=yes"+popWidth+popHeight+popLeft+popTop);
		}
		
function popUpFull(popPath,popWidth,popHeight,popLeft,popTop)
		{
			popWidth = ',width=' + popWidth;
			popHeight = ',height=' + popHeight;
			popLeft = ',Left=0' + (window.screenLeft + popLeft);
			popTop = ',Top=0' + (window.screenTop + popTop);
			
			window.open(popPath,"_blank","toolbar=yes,resizable=yes,location=yes,status=yes,menubar=yes,scrollbars=yes"+popWidth+popHeight+popLeft+popTop);
		}