function newWin(thisurl, width, height, options)
{
if (options == null)
{
options = "";
}
window.open(thisurl, "new_win", "height=" + height + ",width=" + width + ",scrollbars=no,top=110,left=280,resizable=no,status=no" + options);
}
function cmpPopupNamedOptions(url,name,width,height,options,target) {
if (target) target.location.href = url;
else {
newwindow = window.open(url,name,"width="+width+",height="+height+","+options+",scrollbars=no,top=110,left=280,resizable=no,status=no");
newwindow.focus();
}
}
