function OpenSponsor(str) {   w = window.open(str,'info','toolbar=yes,scrollbars=yes,resizable=yes,status=yes,width=600,height=400');   w.moveTo(0,0);   w.focus();}function OpenSite(str) {w = window.open('http://' + str,'site','toolbar=yes,scrollbars=yes,resizable=yes,status=yes,width=600,height=400');w.moveTo(0,0);w.focus();}function OpenMap(str) {   w = window.open(str,'map','scrollbars=no,resizable=no,status=no,width=750,height=505');   w.moveTo(20,20);   w.focus();}function OpenShop(str) {   w = window.open(str,'shop','scrollbars=yes,resizable=yes,status=yes,width=screen.availWidth - 10,height=screen.availHeight - 10');   w.moveTo(10,10);   w.focus();}function OpenPicture(str) {   w = window.open(str,'picture','scrollbars=yes,resizable=yes,status=yes,width=600,height=screen.availHeight');   w.moveTo(0,0);   w.focus();}function SelfResize() {   self.moveTo(10,10);   self.resizeTo(screen.availWidth - 10,screen.availHeight - 10);   self.focus();}function GoPage(n,Pn) {   if (Pn.selectedIndex != 0) location.href = n + '-' + Pn.selectedIndex + '.html'   else location.href = 'index.html';}function Thanks(str) {	x = parseInt(screen.availWidth / 2 - 250);	y = parseInt(screen.availHeight / 2 - 200);	w = window.open(str,'info','scrollbars=no,resizable=no,status=no,width=500,height=400');	w.moveTo(x,y);	w.focus();}function CloseAndOpen(str) {self.close();w = window.open(str,'top','toolbar=yes,scrollbars=yes,resizable=yes,status=yes,width=screen.availWidth,screen.availHeight');w.moveTo(0,0);w.resizeTo(screen.availWidth,screen.availHeight);w.focus();}