//---------------------------------------------------------------------------------------------------
//   SCRIPT NAME: focus.js
//   DESCRIPTION: Input Focus
//    ASSOCIATED: none
//        AUTHOR: sales@gonline.co.za
// CREATION DATE: 07/08/2004
//      MODIFIED:
//---------------------------------------------------------------------------------------------------

<!--start-->

function inputfocus(ref, defaultString) { if (ref.value == defaultString) { ref.value = ''; } }

function inputblur(ref, defaultString) { if (ref.value == '') {	ref.value = defaultString; } }

function iwant_email() {
var emailname = window.document.iwantform.cdoFrom.value.toLowerCase();
window.document.iwantform.cdoCC.value = emailname.substring(emailname.lastIndexOf("\\\\") + 1,emailname.length);
}

function support_email() {
var emailname = window.document.supportform.cdoFrom.value.toLowerCase();
window.document.supportform.cdoCC.value = emailname.substring(emailname.lastIndexOf("\\\\") + 1,emailname.length);
}

<!--start-->