function nextfield(target) {
if(window.event && window.event.keyCode == 13) {
document.getElementById(target).focus();
return false; }
else
return true;
}

function onField(txtfield) {
if (txtfield.value==txtfield.id)
txtfield.value = "";
txtfield.className='stdinputbox stdinputover'
}

function offField(txtfield) {
if (txtfield.value=="")
txtfield.value=txtfield.id;
if (txtfield.type=='text') {
txtfield.className='stdinputbox'
} else {
txtfield.className='stdinputboxc'
}
}

function onFieldNL(txtfield) {
if (txtfield.value==txtfield.id)
txtfield.value = "";
txtfield.className='stdinputbox stdinputover'
}

function offFieldNL(txtfield) {
if (txtfield.value=="")
txtfield.value=txtfield.id;
txtfield.className='stdinputbox'
}

function addToFavorites() {
var title="Imago Relationship Therapy";
var urlAddress="http://www.imagorelationshiptherapylondon.co.uk";
var url=self.location.href

if (window.sidebar) { 
window.sidebar.addPanel(title, url,""); 
}

else if ( window.opera && window.print ) {
	var elem = document.createElement('a');
	elem.setAttribute("href",url);
	elem.setAttribute("title",title);
	elem.setAttribute("rel","sidebar");
	elem.click();
}

else if ( document.all ) {
window.external.AddFavorite(url, title);
}
}

