 function jsOpenOtherImprime()
{
if (document.openImprime.docOid.value!="-1")
{
document.openImprime.submit();
}
}
var popupwin=null;
function winPopImprime(url,width,height) {
var width = width == null ? ',width=750' : ',width='+width;
var height = height == null ? ',height=450' : ',height='+height;
var targetWin = arguments.length>=4 ? targetWin = arguments[3] : targetWin = 'DGI';
var scrollbars = arguments.length>=5 ? scrollbars = arguments[4] : scrollbars = 'yes';
popupwin = window.open(url,targetWin,'toolbar=no'+width+height+',directories=no,status=no,scrollbars='+scrollbars+',resizable=yes,menubar=yes');
//if (!(isMac&&IsIE)&&popupwin&&popupwin.focus) popupwin.focus();
//if (!isMac&&popupwin&&popupwin.focus) popupwin.focus();
if (popupwin&&popupwin.focus) popupwin.focus();
return false;
}
function winPopExternImprime(url,width,height) {
var width = width == null ? ',width=750' : ',width='+width;
var height = height == null ? ',height=450' : ',height='+height;
var targetWin = arguments.length>=4 ? targetWin = arguments[3] : targetWin = 'DGI';
var scrollbars = arguments.length>=5 ? scrollbars = arguments[4] : scrollbars = 'yes';
//url=url_redirect+"?path="+url;
popupwin = window.open(url,targetWin,'toolbar=no'+width+height+',directories=no,status=no,scrollbars='+scrollbars+',resizable=yes,menubar=yes');
//if (!(isMac&&IsIE)&&popupwin&&popupwin.focus) popupwin.focus();
//if (!isMac&&popupwin&&popupwin.focus) popupwin.focus();
if (popupwin&&popupwin.focus) popupwin.focus();
return false;
}