function clickHandler(msg) {
	return confirm(msg);
}


function popUp(url,w,h,toolbar,scrollbar) {
	var scrol=0;
	if (w>screen.width) {
		w=screen.width;
		scrol=1;
	}
	if (h>screen.height) {
		h=screen.height;
		scrol=1;
	}

	var left = (screen.width/2) - w/2;
  	var top = (screen.height/2) - h/2;

	var opt='toolbar='+toolbar+',location=0,directories=0,status=0,menubar=0,scrollbars='+ scrollbar +',height='+h+',width='+w+',top='+top+',left='+left;
	//window.child.zoom.close();
	var wnd= window.open(url,'',opt);
	//wnd.resizeTo(w+4,h+20);
	if (wnd && wnd.focus) wnd.focus();
}


function ShowFeatures() 
{
	popUp('special_features.php?popup',530,613,0,0);
	return false;
}

function ShowFeaturesFCC() {
	popUp('special_features.php?popup2',530,613,0,0);
	return false;
}