// CMS cms_popup.js Version: 1.0 

function popup(url,wname,attrib)
{
  popupwindow = window.open(url, wname, attrib);
  if (window.focus) {popupwindow.focus()}
  return false;
}

function contentpopup( windowname, content, attribs)
{
	newwindow=window.open('',windowname,attribs);
	var tmp = newwindow.document;
	tmp.write(content);
	tmp.close();
	if (window.focus) {newwindow.focus()}
	return false;
}
