// JavaScript Document
function sendto(a)
{
var screenw = (window.screen.width)
var screenh = (window.screen.height)
if ((window.screen.width=='640') && (window.screen.height=='480'))
window.open(a, 'determined','toolbar=yes,scrollbars=yes,resizable=yes,location=yes,directories=yes,menubar=yes,status=yes,width=640,height=480');
else
if ((window.screen.width=='800') && (window.screen.height=='600'))
     window.open(a, 'determined','toolbar=yes,scrollbars=yes,resizable=yes,location=yes,directories=yes,menubar=yes,status=yes,width=800,height=600');
else if ((window.screen.width=='1024') && (window.screen.height=='768'))
 window.open(a, 'determined','toolbar=yes,scrollbars=yes,resizable=yes,location=yes,directories=yes,menubar=yes,status=yes,width=1024,height=768');
 else if ((window.screen.width=='1152') && (window.screen.height=='864'))
 window.open(a, 'determined','toolbar=yes,scrollbars=yes,resizable=yes,location=yes,directories=yes,menubar=yes,status=yes,width=1152,height=864');
 else if ((window.screen.width=='1280') && (window.screen.height=='600'))
 window.open(a, 'determined','toolbar=yes,scrollbars=yes,resizable=yes,location=yes,directories=yes,menubar=yes,status=yes,width=1280,height=600');
 else if ((window.screen.width=='1280') && (window.screen.height=='720'))
 window.open(a, 'determined','toolbar=yes,scrollbars=yes,resizable=yes,location=yes,directories=yes,menubar=yes,status=yes,width=1280,height=720');
 else if ((window.screen.width=='1024') && (window.screen.height=='768'))
 window.open(a, 'determined','toolbar=yes,scrollbars=yes,resizable=yes,location=yes,directories=yes,menubar=yes,status=yes,width=1280,height=768 ');
else if ((window.screen.width=='1280') && (window.screen.height=='1024'))
 window.open(a, 'determined','toolbar=yes,scrollbars=yes,resizable=yes,location=yes,directories=yes,menubar=yes,status=yes,width=1280,height=1024');
else 
  if (screenw < 640) {screenw = 640}
  if (screenh < 480) {screenh = 480}
  window.open(a, 'determined','toolbar=yes,scrollbars=yes,resizable  =yes,location=yes,directories=yes,menubar=yes,stat  us=yes,width='+screenw+',height='+screenh);
}