	<!-- Begin

	function genericpopup(url, title, height, width, rootdir) {
	
	var h = height;
	
	var w = width;
	
	var scroll = 'no';
	
	prefix = rootdir;
	
	storyurl = window.location;		
	
	newurl = url;
	
	var name = navigator.appName;

	if (name == "Microsoft Internet Explorer")newurl = url;		
	
	settings='width='+w+',height='+h+',top='+300+',left='+0+',right='+0+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no,pos=right';
	
	popup = window.open("", title, settings);
	
	popup.focus();	
	
	popup.location = newurl;	
	}	
	// End -->	