function CreateNewWin( which )
{
	parent.farwindow =  window.open('','RemoteWindow','left=400, top=50, width=400,height=540,scrollbars=auto,resizable=yes,status=no');
	
	if ((which == 'C')||(which == 'D'))
	{
			parent.farwindow.location.href = 'Class_View.asp?chkOption='+which;
	}
	else
	{
		if (parent.farwindow != null) 
		{
			if(parent.farwindow.opener == null) window.opener = self; 
			parent.farwindow.location.href = 'Keyword_View.asp?chkOption='+which;
		}
	}
}
