
/////////////////////////////////////////////////
// Pop Window Code  //
/////////////////////////////////////////////////

function popWindow(objFile,strParam)		{

var objPopWin

objPopWin = window.open(objFile, 'imrWin', strParam)

objPopWin.focus()


}




////////////////////////////////////////////////////

// This code spits the page out of a frame if it is in one. -- This is needed because we are using frames on the search feature


	if(document.forms.length == 0) 	{

		
	
		
			if(top.location != self.location)	{
		
				top.location = self.location
	
			}
	
		
	
	
	}

