
var plain_window = null;

function fWindow(destination,destname){

  if(screen.availWidth){
                if(screen.availWidth > 650){
                var wdt = 770;
                var hgt = 470;}
                else{
                var wdt = 610;
                var hgt = 460;}}
  else{
                var wdt = 610;
                var hgt = 460;}

  var specials = "width=" + wdt + ",height=" + hgt + ",top=0,left=0,toolbar,resizable,scrollbars,menubar";
  plain_window = window.open(destination,destname,specials);
  plain_window.focus();
  }


var site_window = null;

function sWindow(destination,destname){

  if(screen.availWidth){
                if(screen.availWidth > 650){
    	            if(screen.availWidth > 850){
			var wdt = 990;
			var hgt = 560;}
		     else{
			var wdt = 770;
			var hgt = 440;}}
                else{
                var wdt = 610;
                var hgt = 440;}}
  else{
                var wdt = 610;
                var hgt = 440;}

  var specials = "width=" + wdt + ",height=" + hgt + ",top=0,left=0,toolbar,resizable,scrollbars,location,menubar";
  site_window = window.open(destination,destname,specials);
  site_window.focus();
  }

