﻿<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
  
var width = window.screen.width;
var height = window.screen.height;

if (width > 1024) width = 1024;
if (height > 768) height = 768;
  
var nw = window.open(href, windowname, 'width=1024,height=768,scrollbars=auto,toolbar=no;status=no;menubar=no,channelmode=no,titlebar=no,directories=no,location=no,fullscreen=yes');

if (nw)
	nw.focus();

return false;
}
//-->

