esto funciona:
Código HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<script language="JavaScript" type="text/javascript">
<!--
function prueba(){
expreg = new RegExp("[^=]+=(([url]http://)?[^&]+)$");
if(expreg.test(document.URL))
alert(RegExp.$1);
else
alert("ERROR");
}
//-->
</script>
</head>
<body onload="prueba()">
</body>
</html>
Saludos