<!-- aptURL Service is provided by aptURL.com © Copyright 2005 aptURL.com All rights reserved. ->


function checkShorten() {
var correct = true
if (document.Shorten.name.value == "") {correct = false; alert("Please enter your Name!")}
else if (document.Shorten.email.value == "") {correct = false; alert("Please enter a valid Email address!")}
else if (document.Shorten.country.value == "") {correct = false; alert("Please enter your Country!")}
else if (document.Shorten.linkid.value == "") {correct = false; alert("Please enter your Link Alias!")}
else if (document.Shorten.url.value == "http://") {correct = false; alert("Please enter a valid URL link!")}
return correct
}


document.write("<p align=center><table width=400 border=0 bordercolor=#0000FF bgcolor=#ffff00 align=center cellpadding=3 cellspacing=0><tr><td width=100% valign=middle align=center><form name=Shorten action=http://www.apturl.com/au_shorten_create.php onsubmit='return checkShorten()' method=GET><table width=100% align=center border=0 cellpadding=5 cellspacing=0><TBODY style='font-family:Verdana; font-size:12'><tr><td colspan=2 align=center><font face=Arial size=3><b>Shorten your loooooooooong URL for FREE!</b></font><br><br></td></tr><tr><td width=100% nowrap colspan=2 valign=bottom align=center>Your Long URL to shorten:<br><input type=text name=url value='http://' size=56 maxlength=512></td></tr><tr><td width=50% nowrap valign=bottom align=center>Name:<br><input type=text name=name size=24 maxlength=64></td><td width=50% nowrap valign=bottom align=center>Email:<br><input type=text name=email size=24 maxlength=255></td></tr><tr><td width=50% nowrap valign=bottom align=center>Country:<br><input type=text name=country size=24 maxlength=64></td><td width=50% nowrap valign=bottom align=center>Alias:<br><input type=text name=linkid size=24 maxlength=64></td></tr><tr><td nowrap colspan=2  valign=bottom align=center><br><input type=submit value='Click to Try this out!'>&nbsp;&nbsp;&nbsp;&nbsp;<font face=Verdana size=2>Powered by <A TARGET=_blank HREF=http://www.apturl.com/auhome.html>aptURL.com</font></td></form></tr></table></td></tr></table></p>")

