function addToPOCOFav()
{
var imgurl='';


var srcEvent = document.event;
if(srcEvent){
	var EventElement = document.elementFromPoint ( srcEvent.clientX, srcEvent.clientY );
	if(EventElement.href)
		imgurl=EventElement.href;
}

	var parentwin = this.window;
	var sel = '';
	if (parentwin.document.selection) {
		var sel = parentwin.document.selection.createRange().text;
	}

	var url = parentwin.location.href;

	var title = document.title;

void(window.open('http://my.poco.cn/fav/storeIt.php?t='+escape(title)+'&u='+escape(url)+'&c='+escape(sel)+'&img='+escape(imgurl),'_blank','scrollbars=no,width=475,height=575,left=75,top=20,status=no,resizable=yes'));


}



