function openSelectionWindow() {
	var newWin = null;
	myformObj = openSelectionWindow.arguments[0];
    var url = openSelectionWindow.arguments[1];
    nArgs = openSelectionWindow.arguments.length;
    var width = openSelectionWindow.arguments[2];
    var height = openSelectionWindow.arguments[3];	
    
    openWindow(url,width,height);
	
}

function returnToOpener(myValue) {
	
	if(window.opener.myformObj && myValue) {
		
		window.opener.myformObj.value=myValue;
		window.close();
	}else {
		alert("Error Sending Variable back");	
	}
	

}

