function generic_popup(linkto, windowname, width, height, left, top, formname, variables){

	if (! window.focus)return true;
	var href;
	if (typeof(linkto) == 'string')
	   href=linkto+"?"+variables;
	else
	   href=linkto.href;
	window.open(href, windowname, 'width='+width+',height='+height+',left='+left+', top='+top+', RESIZE=YES, scrollbars=yes');

	return false;
}

