var popUpWin=0;
function popPencere(URLStr, align, width, height, msgid){
/*	if(popUpWin){

		if(!popUpWin.closed) popUpWin.close();
	}
*/
	if( align == 'center' ){
		var left = (screen.width/2) - width/2;
		var top = (screen.height/2) - height/2;
	} else {
		var left = 0;
		var top = 0;
	}
	popUpWin = open(URLStr, 'popUpWin'+msgid, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function popUpWindow(URLStr, left, top, width, height){
  if(popUpWin)
  {
    if(!popUpWin.closed) {popUpWin.close();}
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=yes,directories=no,status=no,menubar=no,scrollbar=no,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function showIM(msgid){
	popPencere('/modul/messenger/mesajgoster.php?id=' + msgid,'center',320,240,msgid);
}

function uyeG(ID){
         popPencere("/profil.goster.php?id="+ID, "center", 600, 600, ID);
}

function RG(ID){
         popPencere("/p.resim.php?ADRES="+ID, "center", 15, 15, 'RESIM');
}

