function OpenEdit(FieldName)
{
	var NowURL = "PageEditorNet/PageEditor.aspx"
	            + "?FIELD="	+ FieldName;
	window.open(NowURL, "PageEdit","toolbar=no,location=no");
}

function OpenEdit2(FieldName, AutoForm, PageID, PageArea)
{
	var NowURL = "PageEditor.aspx"
	            + "?FIELD="	    + FieldName 
				+ "&AUTOFORM="  + AutoForm
				+ "&PAGEID="    + btnSave
				+ "&PAGEAREA="  + btnCancel;

	location.href = NowURL;
}