//----------------------------------------------------------------------------------------------
//			displayTools.js								Display tools
//		 	Created by Johan van Niekerk				SSPF-Dundee
//			10 November 2005
//
//			This javascript file contains methods for display popup windows etc
//----------------------------------------------------------------------------------------------


function popUp(URL) {
	newwindow=window.open(URL,'my_window','menubar=0,resizable=1,width=700,height=500,scrollbars=yes');
}

function popUpHelp(URL) {
	newwindow=window.open(URL,'my_window','menubar=0,resizable=1,width=500,height=600,scrollbars=yes,screenX=100,screenY=100');
}

function widePopUp(URL) {
	newwindow=window.open(URL,'my_window','menubar=0,resizable=1,width=900,height=600,scrollbars=yes,screenX=100,screenY=100');
}