<!--
//---- begin new window script
function GoTo(uRl, setName, setWidth, setHeight, setToolbar, setLocation, setDirectories, setStatus, setMenubar, setScroll, setResize) {
//Set default in case nothing is specified "1" is show "0" is no show
if(!uRl){uRl="http://healthcommunities.com";}//URL	
if(!setName){setName="_blank";}				//Name of the window for targets
if(!setWidth){setWidth="450";}				//Size Width: pixels
if(!setHeight){setHeight="350";}			//Size Height: pixels
if(!setToolbar){setToolbar="1";}			//Toolbar: 1 or 0
if(!setLocation){setLocation="1";}			//Location Bar: 1 or 0
if(!setDirectories){setDirectories="0";}	//Extra buttons: 1 or 0
if(!setStatus){setStatus="1";}				//Status bar: 1 or 0
if(!setMenubar){setMenubar="1";}			//File Menubar: 1 or 0
if(!setScroll){setScroll="1";}				//Scroll: 1 or 0
if(!setResize){setResize="1";}				//Resizable: 1 or 0

window.open(uRl, 
setName, 
"width=" + setWidth +
",height=" + setHeight +
",toolbar=" + setToolbar +
",location=" + setLocation +
",directories=" + setDirectories +
",status=" + setStatus +
",menubar=" + setMenubar +
",scrollbars=" + setScroll +
",resizable=" + setResize)
}
//---- end new window script

<!--
function GoTo(uRl)
{window.open(uRl,'podiatrychannel', "width=590,height=425,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=no,resizable=1")}
// -->

