
function openWin(tURL,width,height)
{
var name = "edit";
var url  = tURL;
var posX = 150;
var posY = 5;
var sw = width + 30;
var sh = height + 50;

aWindow=window.open(tURL,name,"width="+sw+",height="+sh+",scrollbars=0,screenX="+posX+",screenY="+posY+",top="+posY+",left="+posX);
//aWindow.moveTo(posX,posY);

aWindow.focus();
aWindow.resizeTo(sw,sh);

}

