function openwin(theURL,winName,features){
	newwin=window.open(theURL,winName,features);
	if (!newwin.opener)
		newwin.opener = self;
	newwin.name=winName;
	return newwin;
};

