// JavaScript Document
var popUpWin=0;
function ClosePopUp()
{
	document.write('ddd');
	self.close();
	
}
function ShowPollAticles(path, left, top, width, height, mark, aticles_id)
{
  //window.alert();

  /*if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }*/
  popUpWin = window.open(path, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
  popUpWin.location.href = "poll_aticles.php?mark="+mark+"&id="+aticles_id;
  //popUpWin.document.write(mark);
}
