/**************************************************************
rightCol.js revision 1.0 3-18-2002 JMM

This JS file will be responsible for printing the IFrame for IE & NS6. The Iframe prints a div over the original right column. The original right column is nessary for NS4 browsers which do not support Iframes.

This script also contains the "openWin" function which pops up a new window as a solution for the inabilty to use iframes in NS4.

JMM 3/18/2002
**************************************************************/


function openWin(url) {
	
	
	var url;
	var x = 800;
	var y = 700;
	
	var newWin = window.open(url,'pop','windowReference.focus,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes');
	newWin.resizeTo(x,y);
	newWin.moveTo(100,100);
	newWin.focus();
}

// -->


