<input id="inputype" type="file" accept="image/*" value="../Images/whatever.gif">
also can i change the value by calling a function?
this function will be invoked onclick.
function click() {
document.getElementById('inputype').value = "../Images/whatever.gif";
}
how do i get this to work?