
//var bookmarkurl="http://www.starreviews.com";
var bookmarktitle="starreviews.com";
function addbookmark(bookmarkurl){

if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle);

else if(window.sidebar)
window.sidebar.addPanel(bookmarktitle, bookmarkurl,"");
}

function clearText(thefield) {
    thefield.value = ""
}

function AddText(thefield, thevalue){
	if (thefield.value == "")
		thefield.value = thevalue; 
}