function GoTo(object)
{
	document.location.href = FindHref(object.children);
};

function FindHref(children)
{
	for (var i = 0; i < children.length; i++)
	{
		if (children[i].id == "link")
		{
			return children[i].href;
		}
	}
};


/* 
*********************************************************
Modified by:	Shishir Raj Adhikari.
		Software Engineer. 
		sisir48@yahoo.com 
*********************************************************
*/

function printWindow(strfilename) {
	window.open(strfilename,"","width=625,height=625,resizable=yes,scrollbars=yes");	
}
