function HideContent(d) {	if(d.length < 1) { return; }	document.getElementById(d).style.display = "none";}function ShowContent(d) {	if(d.length < 1) { return; }	document.getElementById(d).style.display = "";}function ReverseContentDisplay(d) {	if(d.length < 1) { return; }	if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = ""; }	else { document.getElementById(d).style.display = "none"; }}var newwindow;function poptastic(url){	newwindow=window.open(url,'name','height=520,width=520,left=100,top=100,resizable=yes,scrollbars=no,toolbar=no,status=no');	if (window.focus) {newwindow.focus()}}var newwindow;function popgallery(url){	newwindow=window.open(url,'name','height=560,width=680,left=100,top=100,resizable=yes,scrollbars=no,toolbar=no,status=no');	if (window.focus) {newwindow.focus()}}