﻿// javascript functions
function newWindow(theUrl){
	window.open(theUrl,"_blank","toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=1024,height=768");
}

function newWindowSmall(theUrl){
	window.open(theUrl,"_blank","toolbar=no,location=no,status=yes,menubar=no,scrollbars=no,resizable=yes,width=590,height=600");
}
