<!--


function CommonPopup(url,name,popupWidth,popupHeight,leftpos,toppos){
//  if(toppos == 0 || toppos == null) toppos = screen.height / 2 - popupHeight/2;
//  if(leftpos == 0 || leftpos == null) leftpos = screen.width / 2 - popupWidth/2;
  if (getCookie(name) != 'Y' ) {
  childwin=window.open(url,name,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,left=' + leftpos + ',top=' + toppos +', width='+popupWidth +', height='+popupHeight);
    }
}

function getCookie( name )
{
  var nameOfCookie = name + "=";
  var x = 0;
  while ( x <= document.cookie.length )
  {
    var y = (x+nameOfCookie.length);
    if ( document.cookie.substring( x, y ) == nameOfCookie )
    {
      if ( (endOfCookie=document.cookie.indexOf( ";", y )) == -1 )
        endOfCookie = document.cookie.length;
      return unescape( document.cookie.substring( y, endOfCookie ) );
    }
    x = document.cookie.indexOf( " ", x ) + 1;
    if ( x == 0 )
    break;
  }
  return "";
}

//-->