Forgot your password?
typodupeerror

Comment Re:Safari. (Score 2, Informative) 42

There is a bug in the following Javascript on the page:

function validate(aForm)
{
if (cookies_enabled() == true)
{
checkForSelection (aForm);
}
else
{
alert ("You must have cookies enabled to proceed.");
}
}

Apparently, cookies_enabled() is unreliable under both Safari and OmniWeb. To fix this, either change the condition to true or use one of the direct download links someone has been kind enough to post below.

Slashdot Top Deals

C makes it easy for you to shoot yourself in the foot. C++ makes that harder, but when you do, it blows away your whole leg. -- Bjarne Stroustrup

Working...