// JavaScript Document
function weblink(linkid)
{
		
}
function hpageview(xlink, xwidth, xheight)
{
	var xhLink=(typeof(xlink.href)=='undefined')?xlink:xlink.href;
	if (xhLink=='')
		return false;
	xwindef='status=no,resizable=no,scrollbars=yes,toolbar=no,location=no,fullscreen=no,titlebar=yes,height='.concat(xheight).concat(',').concat('width=').concat(xwidth).concat(',');
	xwindef=xwindef.concat('top=').concat((screen.height - xheight)/2).concat(',');
	xwindef=xwindef.concat('left=').concat((screen.width - xwidth)/2);
	popWindow=window.open(xlink,'_dhx',xwindef);
	popWindow.focus();
	if (typeof(xlink.href) != 'undefined')
		return false;
}