﻿/* Web Scripts File*/

function OpenWindow(url,width,height) {
	// Expand window parameters for Firefox
	width = width + 16;
	height = height + 19;

	// Make an options string
	var options = "";
	options = options + "width=" + width;
	options = options + ",height=" + height;
	options = options + ",resizable=no,scrollbars=no,menubar=no,toolbar=no,directories=no,location=no,status=no";
	window.open(url,'',options);
}