function popup(href, width, height)
{
	window.open(href, 'popup', 'location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,left='+ (screen.availWidth-width)/2 +',top='+ (screen.availHeight-height)/2 +',width='+ width +',height='+ height);
}

