/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: wsabstract.com | http://www.wsabstract.com */



function placevalues(which) {

  for (i=0;i<which.length;i++) {
    var tempobj=which.elements[i];
    if (tempobj.name == "requiredname") {
	var tempyf=" ";
         tempyf=tempobj.value;
	};
        

       if (tempobj.name == "requiredtitle") {
	var temptitl=" ";
         temptitl=tempobj.value;
           };
    if (tempobj.name == "requiredhoroscope_name") {
	
         tempobj.value = tempyf;
           };

         if (tempobj.name == "requiredhoroscopetitle") {
	tempobj.value=temptitl;
           };
  }

return which;
}
