// for print a page

function printpage() 
{
	window.print();  
}

// for email a story

function email()
{
//var headline=document.getElementById("headline").value; 
//changed the above lineconde with next three line code
var getHeadline=document.getElementsByTagName("h2")[0];
var headlines=getHeadline.childNodes[0];
var headline = headlines.nodeValue;

var y = "";
var x = window.location;

var pattern = /#$/;
if (pattern.test(x))
	y = (x.toString()).slice(0,(x.toString()).length-1);
else
	y = x;

openloc= "http://www.headlinesindia.com/mailstory/index.jsp?add="+y+"&headline="+headline; 	
window.open(openloc,'mywindow','location=no,menubar=no,width=350,height=300 left=600,top=10');
}

// for write to editor

function edit()
{
 
var openloc= "http://www.headlinesindia.com/mailstory/wr_editor.jsp?add="+window.location; 

window.open(openloc,'mywindow1','location=no,menubar=no,width=350,height=300 left=600,top=10');

}