> WELL..is there other option?
No.
> Because pocket internet explorer does not support javascript..
There was no mention of Pocket Internet Explorer in your original post...
However, Microsoft Internet Explorer for Pocket PCs enables JScript support:
http://www.microsoft.com/technet/archive/wce/downloads/ppctoys.mspx?mfr=true

Signature
Mark Rae
ASP.NET MVP
http://www.markrae.net
Claudia Fong - 18 Sep 2007 09:52 GMT
When I said that it does not support is because I can't download
anything to the PDA.. I can only use the original PIE.. and with this
one, the javascript I wrote doesn't work..
document.onkeydown = keydown;
function keydown(evt)
{
if (!evt)
evt = event;
//if (evt.shiftKey && evt.keyCode == 9)
// if (evt.shiftKey && evt.keyCode == 32)
if (evt.ctrlKey && evt.keyCode == 65)
{
myfunction()
}
}
function myfunction()
{
window.open("Language.aspx", '_blank');
window.opener='x';window.close();
}
Cheers!
Claudi