
function popup(id, width, height) {
	var btn = document.getElementById(id);
	if(btn) {
		btn.onclick = function() {
			window.open(btn.href,id,'status=0, menubar=0, toolbar=0, scrollbars=1, location=0, directories=0, resizable=0, width='+width+', height='+height+', top=80, left=50');
			return false;
		}
	}
}

function searchValue(id) {
	var input = document.getElementById(id);
	if(input) {
		input.onfocus = function() {
			if(this.value == 'Search') this.value = '';
		}
		input.onblur = function() {
			if(this.value == '') this.value = 'Search';
		}
	}
}

window.onload = function() {
	popup('AudioPlayer', '394', '279');
	popup('AudioPlayerHome', '394', '279');
	popup('licenceFormLink', '600', '650');
	popup('lowPowerFormLink', '600', '650');
	popup('rapFormLink', '800', '640');
	searchValue('searchInput');
}
