/*
   	@Author(s): Robert Logna
   
	Purpose:
*/

// Window objects (Set to NULL on load as default)

var targetWindow = null;

function OpenWindow(url){
	var params = "scrollbars=0,location=0,menubar=0,resizable=0,height=350,width=420,top=200,left=400";
	
	if (targetWindow == null)
		// Open new window
		targetWindow = window.open(url, "_targetWindow", params);
	else{
		if (!targetWindow.closed)
			targetWindow.location.href = url;
		else
			// Reopen window
			targetWindow = window.open(url, "_targetWindow", params);
		
		targetWindow.focus();
	}
}
