<!--
function addbookmark(url, title)
{
	if (window.external) {
		window.external.AddFavorite(url,title)
	} else { 
		alert("Sorry! Your browser doesn't support this function.");
	}
}
function openWindow(theURL, theName, width, height, resize)
{
	window.open(theURL , "" + theName + "", "width=" + width + ", height=" + height + ", resizable=" + resize + ", toolbar='0', directories='0', menubar='0', status='yes', location='0', scrollbars='yes', copyhistory='0'")
}
//-->