// Open New Window Or If Block Use The Current Window //
// Version V1.0.0, 01/10/2007 WBM. //
// Copyright Design Atom Ltd 2007 //

// Open a Child Window Using The Target Passed
function fctOpenWindow(strTarget) {
	// Save the original target to a new instance. Note - passed variables are cleared by the 
	// pop-up blocker
	strOriginal = strTarget;
	
	// Try and open the document in a new window
	thisWindow = eval("window.open('"+ strTarget +"','','width=790,height=590,left=5,top=5,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizeable=yes')");
}

