function subWin(url,width,height,winname){
var newWin;
if(! width)width=600;
if(! height)height=500;
newWin=window.open(url,winname,"resizable=no,menubar=no,directories=no,status=yes,scrollbars=no,location=no,width="+width+",height="+height);
newWin.focus();
return false;
}

function subWin2(url,width,height,winname){
var newWin;
if(! width)width=600;
if(! height)height=600;
newWin=window.open(url,winname,"resizable=no,menubar=no,directories=no,status=yes,scrollbars=no,location=no,width="+width+",height="+height);
newWin.focus();
return false;
}

function subWin3(url,width,height,winname){
var newWin;
if(! width)width=600;
if(! height)height=600;
newWin=window.open(url,winname,"resizable=yes,menubar=no,directories=no,status=yes,scrollbars=yes,location=no,width="+width+",height="+height);
newWin.focus();
return false;
}
