﻿function openPopUp(page, wSize, hSize)
{
	var maxwidth = screen.width;
	var maxheight = screen.height;
	var windowprops = "location=no,scrollbars=no,menubars=no,toolbars=no,resizable=yes,status=no,directories=no,";
	windowprops += "width=" + wSize + ",height=" + hSize + ",top=" + ((maxheight*.1)-25) + ",left=" + ((maxwidth*.1)-5);
	window.open(page, 'fullPopup', windowprops);
}

