function OpenWindow(x){
	window.open(x, null, "height=400,width=450,status=yes,toolbar=no,menubar=no,location=no,resizeable=yes,directories=no,scrollbars=yes")
}

function OpenNewForum(){
	window.open("http://www.asp-dev.com/freeforum3/default.asp?board_ID=267", null)
}

function OpenInstruct(){
	window.open("http://www.cybershotcentral.com/instruct.html", null, "height=400,width=600,status=no,toolbar=no,menubar=no,resizeable=yes,directories=no,scrollbars=yes")
}	
//-----------------Exit Disclaimer-----------------------
function ExternalSite(x){// x is the variable declared when the function ExternalSite is called
	window.open(x, "exitdis", "height=251,width=251,top=300,left=300,status=no,toolbar=no,menubar=no,location=no,resizeable=no,directories=no,scrollbars=no")
	}
	
var extURL = new String()
extURL = location.search
newextURL = extURL.substring(1, extURL.length) //this just tells the variable to remove the "?" used to make the query

function NewSite()
	{
	window.open(newextURL)
	}
//------------------------------------------------------------