function popup(src,windowname,width,height,screenX,screenY,scrollbars) 
{
	var evalString = windowname+" = window.open(src,windowname,'status=no,scrollbars="+(scrollbars ? scrollbars : 'no' )+",resizable=no,width='+width+',height='+height";
	if(screenX) {
		evalString += "+',screenX='+screenX+',screenY='+screenY+',top='+screenX+',left='+screenY);"
	} else {
		evalString += ");"
	}
	eval(evalString);
	eval('if(window.'+windowname+') { window.'+windowname+'.focus(); }');
}

function cd (id) {
	popup ("index.php?module=red&subName=show&d=1&id="+id, "DetailPopUp", 400, 550, 0, 0, "yes");
}
