function OpenSite(index)   {  

	switch(index){
		case 0:
			file = "http://www.nealstreetdesign.com"
			break
	}
	
	PopUpSite(file)
}


// Pop up site
function PopUpSite(file)   { 
	PopUpWindow=window.open(file, "PopUp",
    "resizable=yes,toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,copyhistory=0,width=900,height=600"); 
  PopUpWindow.location=file;  
	PopUpWindow.focus();

}
