Is there a way to access a variable from one function in another function without defining it outside of the functions? Here's an example code snippet for reference: http://jsfiddle.net/VC6Wq/1/
function one(){
var zero= 500;
}
function two(){
alert(zero)
}