function imageChange(idname, file){
		var element = document.getElementById(idname);
		element.src = file;
}

function backgroundChange2(idname, file){
		var element = document.getElementById(idname);
		element.style.backgroundImage = file;
}

function open_win(){
	window.open("/utilities/shipInfoPopup.asp","_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=yes, width=590, height=565")
}