function openNewsPop(URLtoget)
		{
			var x = (screen.availWidth - 375) / 2; // width of the visible screen, minus the width of the pop-up window
			var y = (screen.availHeight - 600) / 2; // height of the visible screen, minus width of the pop-up window
			var attribs = "width=375,height=600, screenx="+x+",left="+x+",toolbar=yes, resizable=no,location=no,menubar=no,directories=no,copyhistory=no,personalbar=no,scrollbars=no,status=no"
			var w = window.open( URLtoget, "_blank", attribs, true );
			w.focus();
		}
function openInfoPop(URLtoget)
		{
			var x = (screen.availWidth - 375) / 2; // width of the visible screen, minus the width of the pop-up window
			var y = (screen.availHeight - 450) / 2; // height of the visible screen, minus width of the pop-up window
			var attribs = "width=375,height=450,screenx="+x+",left="+x+",screeny="+y+",top="+y+",toolbar=yes,resizable=no,location=no,menubar=no,directories=no,copyhistory=no,personalbar=no,scrollbars=no,status=no"
			var w = window.open( URLtoget, "_blank", attribs, true );
			w.focus();
		}
function openGalleryPop(URLtoget)
		{
			var x = (screen.availWidth - 375) / 2; // width of the visible screen, minus the width of the pop-up window
			var y = (screen.availHeight - 450) / 2; // height of the visible screen, minus width of the pop-up window
			var attribs = "width=375,height=450,screenx="+x+",left="+x+",screeny="+y+",top="+y+",toolbar=yes,resizable=no,location=no,menubar=no,directories=no,copyhistory=no,personalbar=no,scrollbars=no,status=no"
			var w = window.open( URLtoget, "_blank", attribs, true );
			w.focus();
		}
function openMusicPop(URLtoget)
		{
			var x = (screen.availWidth - 375) / 2; // width of the visible screen, minus the width of the pop-up window
			var y = (screen.availHeight - 500) / 2; // height of the visible screen, minus width of the pop-up window
			var attribs = "width=375,height=500,screenx="+x+",left="+x+",screeny="+y+",top="+y+",toolbar=yes,resizable=no,location=no,menubar=no,directories=no,copyhistory=no,personalbar=no,scrollbars=no,status=no"
			var w = window.open( URLtoget, "_blank", attribs, true );
			w.focus();
		}