// Function to bring up new windows
function NewWindow (vWidth, vHeight, vLink) {
	var vWindow;
	var WindowName = Math.round(Math.random(10)*10000);
	vWindow = window.open (vLink, WindowName,'width=' + vWidth + ',height=' + vHeight + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no')
}