function GetPageId() {
	try {
		return document.Form1.htxtPageId.value;
	}

	catch (error) {
		alert("You cannot edit this Page!");
		throw error;
	}
}

function EditPage() {
	try {
		if (GetPageId() != "") {
			window.location= GetEditLink() + GetPageId();
		}
	}
	
	catch (error) {
		//alert("You cannot edit this Page!");
	}
}

function GetEditLink() {
	return serverwebpath + "SRAdmin/SRContentPage.aspx?Edit=True&PageId=";
}

function PreviewPage() {
	try {
		if (GetPageId() != "") {
			window.location= GetPreviewLink();
			window.open(GetPreviewLink() + "&Preview=true",'Preview','toolbar=no,resizable=yes,scrollbars=yes,width=800,height=600');
		}
	}
	
	catch (error) {
		//alert("You cannot edit this Page!");
	}
}

function GetPreviewLink() {
	return location.search;
}
