// Common JavaScripts
//function removeStartText(obj) {
//	if (obj.value == 'productcode of trefwoord...') { obj.value = ''; }
//	if (obj.value == 'trefwoord...') { obj.value = ''; }
//}
//function setStartText(obj) {
//	if (obj.value == '') { obj.value = 'productcode of trefwoord...'; }
//}

function removeStartText(obj) {
    if ( document.getElementById(obj).value == 'productcode of trefwoord...') { document.getElementById(obj).value = ''; }	
    if ( document.getElementById(obj).value == 'trefwoord...') { document.getElementById(obj).value = ''; }	
}
function setStartText(obj) {
    if (document.getElementById(obj).value == '') { document.getElementById(obj).value = 'productcode of trefwoord...'; }	
}
