﻿// JScript File

// Escape framesets
if (window != top) top.location.href = location.href;

//Blocks all JavaScript errors
//function blockError(){return true;}
//window.onerror = blockError;

function openWin(url, title, tool, scroll, h, w){
	newWin=null;
	var pos = "center";
	var h = h;
	var w = w;
	myleft=(screen.width)?(screen.width-w)/2:100;
	mytop=(screen.height)?(screen.height-h)/2:100;
	settings="width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",toolbar=" + tool + ",scrollbars=" + scroll + ",location=no,directories=no,status=no,menubar=no,resizable=yes";
	newWin=window.open(url,title,settings);
	newWin.focus();	
}