window.onload = function(){
	var image = document.getElementById('signupImg');
	
	
	image.onmouseover = imgSwap;
	image.onmouseout = imgSwapBack;
	image.onclick = openSignupApp;
	//alert(image);

}

function imgSwap(){
	this.src = '../images/Signup2.gif';
}
function imgSwapBack(){
	this.src = '../images/Signup1.gif';
}

function openSignupApp(){
	var newWindow = window.open('/ActiveFiles/Signup.htm','Signup', 'width=300, height=500, left=400, top=200, resizable=no');
	if(window.focus){
		newWindow.focus();
	}
	else{
		test();
	}
}

function test(){
	alert('testing');
}
