function sendPageLink(headline)
{
	tmpURL = "sendPageLink.asp?pageID=" + document.getElementById("currentpageid").value;
	window.open(tmpURL, null, "height=700,width=600,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes");
}

function printPage()
{
	tmpURL = "storyPagePrint.asp?pageid=" + document.getElementById("currentpageid").value;
	window.open(tmpURL, "null", "height=800,width=630,status=yes,toolbar=yes,menubar=yes,location=yes,resizable=yes,scrollbars=yes");
}

function reorder()
{
	tmpLoc = document.getElementById("currentpageid").value;
	tmpUrl = "/console/reorder.asp?pageid=" + tmpLoc;
	window.showModalDialog(tmpUrl,null,"dialogHeight:700px;dialogWidth:600px")
	window.location = window.location
}
