can i ask you something? i dont know where to post this script to make it work.. can you help me? pls, kindly reply..thank very much..
<script>
// (C) 2001
www.CodeLifter.com
//
http://www.codelifter.com
// Free for all users, but leave in this header
var whatName=prompt("Please type in your name:","");
function doName(bLeSsy){
if ((whatName != "")&&(whatName !=null)){
// you can modify this as needed
// this is the message if a name is typed in
document.writeln("Hello "+whatName+"!. Welcome To ASs KiCkEr layouts. ")
}else{
// you can modify this as needed
// this is the message if a name is *not* typed in
document.writeln("Hello!")
}
}
doName(whatName);
</script>