function openWin(url,nameW,widthW,heightW)
{
 	widthWin=widthW;heightWin=heightW;
    var top, left;
    if (screen){
        left = (screen.width<widthWin) ? 10 : (screen.width-widthWin)/2;
        top = (screen.height<heightWin) ? 10 : (screen.height-heightWin)/2;
    }else{
        top = 100;
        left = 100;
    }

	winObj=window.open(url, nameW,"width="+widthW+",height="+heightW+",top="+top+",left="+left+",directories=no,menubar=no,toolbar=no,location=nos,status=no,resizable=no,copyhistory=no,scrollbars=no");
  winObj.focus();
  //return false;
}


function openWinGal(url,nameW,width,height)
{
 	widthWin=width;heightWin=height;
   var mtoX, mtoY;
    if (screen){
        mtoX = (screen.width<widthWin) ? 10 : (screen.width-widthWin)/2;
        mtoY = (screen.height<heightWin) ? 10 : (screen.height-heightWin)/2;
    }else{
        mtoY = 100;
        mtoX = 100;
    }

    winObj=window.open('img.php?img=' + url, nameW,"width="+widthWin+",height="+heightWin+",top="+mtoY+",left="+mtoX+",directories=no,menubar=no,toolbar=no,location=nos,status=no,resizable=yes,copyhistory=no,scrollbars=no");

    winObj.focus();
    //return winObj;
	return false;
}



