// Required by CME code
var top;
var left;
function setTopLeft()
{	
	top = (screen.height - 440)/4;
	left = (screen.width -542)/2;
}
function editblock(blockid)
{
	setTopLeft();
	window.open("../../../admin/CME_PageTools/PS_CMSEdit.aspx?cid=" + blockid + "&src=PS_CMSDBStr", "popoffwin", "top=" + top + ",left=" + left + ",status=yes,width=542,height=440").focus();
}
function editcmsimage(blockid,clk,cpt)
{
	setTopLeft();
	window.open("../../../admin/CME_PageTools/cmsimageselect.aspx?cid=" + blockid + "&src=PS_CMSDBStr&clk=" + clk + "&cpt=" + cpt, "popoffwin", "top=" + top + ",left=" + left + ",width=542,height=440").focus();
}
function editlinkset(blockid,clk)
{
	setTopLeft();
	window.open("../../../admin/link_editor/ps_linkseteditor.aspx?cid=" + blockid + "&src=PS_LinkDBStr&clk=" + clk, "popoffwin", "top=" + top + ",left=" + left + ",width=700,height=440,scrollbars=yes").focus();
}
function find_element(id)
{
	if (document.getElementById)
	{
	//alert('1');
		return document.getElementById(id);
	}
	else
	if (document.all)
	{
	//alert('2');
		return document.all[id];
	}
	else
	if (document.layers)
	{
	//alert('3');
		return document.layers[id];
	}

	return null;
}



