//Reply post page

//Abuse message
function messageAbuseWindow(strUrl)
{
	myLytebox = new LyteBox();
	myLytebox.showClose=true;
	
	var URL = 'http://sify.com/news/women/help/abuse_form.php'+"?"+strUrl;	
	var anchor = this.document.createElement('a');
	anchor.setAttribute('rev', 'width: 390px; height: 250px;scrolling: no;');
	anchor.setAttribute('title', 'Welcome to News Petition');
	anchor.setAttribute('href', URL);
	anchor.setAttribute('rel', 'lyteframe');				
	//myLytebox.start(anchor, false, true);
	try
	{
	  myLytebox.start(anchor,false,true)
	}
	catch(err)
	{
	  var leftVal = (screen.width -480) / 2;
	  var topVal = (screen.height -350) / 2;
	  newwindow=window.open(URL,'Welcome To News Petition','height=350,width=480,scrollbars=no,left='+leftVal+',top='+topVal);
	}

}


