<!--

function winOpen(url,name){
  //function winOpen(url,name,winwidth,winheight){
  //parametros que se sacaron statbar,scroll,locate,x,y,modal,
  //modal 0 = false | 1 = true
  var adjustedleft = 8//optional
  var adjustedheight = 30//adjust height because of windows taskbar
  var screenwidthremainder = screen.availWidth%2//really not needed, but won't hurt
  var screenheightremainder = screen.availHeight%2
  var screenwidth = screen.availWidth - screenwidthremainder
  var screenheight = screen.availHeight - screenheightremainder
  //var winheight = parseInt(screenheight)* y//set new window height properties
  //var winwidth = parseInt(screenwidth)* x//set new window width properties
  var winheight =380
  var winwidth = 260
  var winleft = parseInt(screenwidth/2) - (winwidth/2) - adjustedleft//optional
  var wintop = parseInt(screenheight/2) - (winheight/2) - adjustedheight
  var win = window.open(url,name,'width=' +winwidth+ ',height=' +winheight+',status=no,scrollbars=no,resizable=no,menubar=no,modal=true,location=no,top='+wintop+',left='+winleft)
}
-->
