

var popUpSearchWin=0;

function popUpSearchWindow()

{ 

  if(popUpSearchWin)

  {

    if(!popUpSearchWin.closed) popUpSearchWin.close();

  }

  popUpSearchWin = open('/search/search.php','popUpSearchWin','toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width=200,height=200,left=400, top=1,screenX=400,screenY=1');

}




var popUpSendtoWin=0;

function popUpSendtoWindow(theURL)

{

  if(popUpSendtoWin)

  {

    if(!popUpSendtoWin.closed) popUpSendtoWin.close();

  }

  popUpSendtoWin = open(theURL,'popUpSendtoWin','toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=yes,copyhistory=yes,width=375,height=430,left=1, top=1,screenX=1,screenY=1');

}




var popUpWin=0;



function popUpWindow(theURL,theWidth,theHeight,theScroll) { 

  if(popUpWin)

  {

    if(!popUpWin.closed) popUpWin.close();

  }

  if(!theWidth)	theWidth=100;

  if(!theHeight) theHeight=100;

  if(!theScroll) theScroll='no';

  winVars = 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbars='+theScroll+',resizable=yes,copyhistory=yes,width=' + theWidth + ',height=' + theHeight + ',left=1, top=1,screenX=1,screenY=1';

  popUpWin = open(theURL,'popUpWin',winVars);

}







function closePopUp(theWin)	{

	if(theWin)  {

		if(!theWin.closed) theWin.close();

	}

}

 
