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