/////////////////ADD TO FAVORITES//////////////////////////
/*

Add-to-favorites Script

Created by David Gardner (toolmandav@geocities.com)

No warranty of any kind comes with this script!

Permission granted to Dynamic Drive (http://dynamicdrive.com) 

to post and feature this script on their DHTML archive

*/



//configure the two variables below to match yoursite's own info

var bookmarkurl="http://www.straightaheadstudios.com"

var bookmarktitle="Web Maintenance Services by Straight Ahead Studios"



function addbookmark(){

if (document.all)

window.external.AddFavorite(bookmarkurl,bookmarktitle)

}
/////////////////CLEAR DEFAULT FORM VALUE//////////////////////////

/*
Clear default form value script- by JavaScriptKit.com
Featured on JavaScript Kit (http://javascriptkit.com)
Visit javascriptkit.com for 400+ free scripts!
*/

function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}