\n');
}
var statusWin;
function showProgress() {
statusWin = open('http://www.arkm.com.ar/community/progress.html','Status','height=150,width=350,location=no,scrollbars=no,menubars=no,toolbars=no,resizable=yes');
}
function hideProgress() {
if (typeof(statusWin) != "undefined") {
statusWin.close();
statusWin = void(0);
}
}
function hideProgressAndReload() {
hideProgress();
history.go(0);
}
function NewWindowClear(URL, L, T, W, H,scroll)
{
var NewWindow;
var Properties = "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars="+scroll+",resizable=no,copyhistory=no, fullscreen=no, left="+L+", top="+T+", width="+W+", height="+H+", alwaysRaised=yes";
NewWindow = window.open(URL,"_blank", Properties);
}
//-->