<html><head><title>Open any File by typing its Name in TextBox</title></head><body><form name="f1"><input type="text" name="abbas" value="Enter the Path of the File to Open" size="100"><br><input type="button" value="Click the File to Open" onClick="opens()"></form><script language="javascript">function opens(){ window.open(f1.abbas.value)}</script></body></script></body></html>