fkn
05-23-2003, 07:22 AM
I need to redirect users that doesnīt have JavaVM installed to a page were they can install JavaVM.
Can anybody tell me what Iīm doing wrong?
This is the script Iīm trying to use:
----------------------------------------------------------------------
<script language="javascript">
function MSjavaVM()
{
if (bMSIE)
{
var buildIncrement = getBuildIncrement();
parseInt(buildIncrement, 10);
if (buildIncrement >= 2925)
{
javaVM = "ok";
}
else
{
window.location = "installJavaVM.htm";
}
</script>
----------------------------------------------------------------------
Thanks in advance for any help!
Can anybody tell me what Iīm doing wrong?
This is the script Iīm trying to use:
----------------------------------------------------------------------
<script language="javascript">
function MSjavaVM()
{
if (bMSIE)
{
var buildIncrement = getBuildIncrement();
parseInt(buildIncrement, 10);
if (buildIncrement >= 2925)
{
javaVM = "ok";
}
else
{
window.location = "installJavaVM.htm";
}
</script>
----------------------------------------------------------------------
Thanks in advance for any help!