window.onload=function(){
Nifty("div#menu a","small transparent top");
Nifty("div#pageBody,div#rightLinks,div#footer,div#vote,div#thanks,div#rightLinks");
Nifty("div#health,div#community,div#resources,div#patient,div#container","bottom");
}

function popup(str)
{
   var arguments = 'resizable=no, toolbar=no,location=no,directories=no,addressbar=no,scrollbars=no,status=no,menubar=no,width=750,height=700,top=50,left=250';
   window.open(str, "_blank", arguments);
}

function OpenVariableWindow(link, winName, intWidth, intHeight){
	var newWindow;
	var screenWidth = screen.width;
	var displayPos = ((screenWidth/2) - (intWidth/2));
	newWindow = window.open( link, winName, "toolbar=no,addressbar=no,menubar=no,width=" + intWidth + ",height=" + intHeight + ",left=" + displayPos + ",scrollbars,resizable");
	newWindow.focus();
}