	var br;
	function reDo()
		{
		window.location = "default.asp?P=" + selectedPrimaryID + "&S=" + selectedSecondaryID;
		}
	function setResize()
		{
		setTimeout("window.onresize=reDo",500);
		}
	if(navigator.appName == 'Netscape' && document.layers != null)
		{
		br="N";
		}
	else if(navigator.appName == 'Microsoft Internet Explorer' && document.all != null)
		{
		br="IE";
		}
	else
		{
		br=null;
		}
	if(br=="N")
		{
		window.onload = setResize;
		}
	
