wiN = 0;
wiDth = 0;
heiGht = 0;
function remoteWindow(wiN,wiDth,heiGht) {
   var viewWindow = window.open( wiN , 'viewWin','resizable=no,scrollbars=yes,status=no,toolbar=no,width='+wiDth+',height='+heiGht);
   viewWindow.focus();
}
wiN2 = 0;
wiDth2 = 0;
heiGht2 = 0;
function remoteWindow2(wiN2,wiDth2,heiGht2) {
   var viewWindow2 = window.open( wiN2 , 'viewWin2','resizable=no,scrollbars=yes,status=no,toolbar=no,width='+wiDth2+',height='+heiGht2);
   viewWindow2.focus();
}