/*  
     --------------------------------
     email: stevevu at iprimus.com.au
     --------------------------------
*/

// declare global variable name
var newWindow = null

function makeNewWindow(dummyWindow) {
	// check if window already exists
	if (!newWindow || newWindow.closed) {
		// store new window object in global variable
		newWindow = window.open("",dummyWindow,"width=800,height=600,toolbar=no,menubar=no,scrollbars=yes")
	} else {
	// window already exists, so bring it forward
	newWindow.focus()
	}
}

