// For more information go to http://www.w3schools.com/js/default.asp
// Read up on DOM - Document Object Model

function goToLink( myUrl )
{
	// Opens in the current window with the given url
	window.document.location.href = myUrl
}

function goToLinkNewWin( myUrl )
{
	// Opens in a new window with the given url
	window.open(myUrl,'jav');
}

function goToLinkNoURL()
{
	// Opens in a new window
	//window.open('secondpage.html','jav','width=300,height=200,resizable=yes'); 
	
	// Opens in the current window
	//window.open('secondpage.html','jav'); 

	window.document.location.href = "http://www.milessenzaki.com"
}

function rolloverTest()
{
	alert("Roll Over Sucessful")
}