// JS File - for popups
function popUp (url, width, height)
{
	window.open (url, "_blank", "height=" + height + ",width=" + width + ",menubar=no,toolbar=no");
}
