

function tell(image) { 

	var track = image.substring(0,7)
	popUpUrl = "../images/" + image;	
	window.open(popUpUrl, track , "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=320,height=460")
}


function tell_me(image) { 
	var track = image.substring(0,7);
	popUpUrl = "../images/" + image;	
	window.open(popUpUrl, track , "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=465,height=330")
	
}

function detect() { 
    nameOf = navigator.appName
	nameUse = nameOf.substring(0,2);
	
	if(nameUse == "Mi") { 
		window.self.location = "artwork/default.htm"
	}
	
	if(nameUse == "Ne") { 
		window.self.location = "artwork/default_ns.htm"
	}

	
}