function show(id) {
	if (document.getElementById("ck_other").checked) {
	document.getElementById(id).style.display="block";
	}
	else {
	document.getElementById(id).style.display="none";
	}
}


function myFocus(element) {
     if (element.value == element.defaultValue) {
       element.value = '';
		element.style.color='#2A2B2B';
     }
   }
   function myBlur(element) {
     if (element.value == '') {
       element.value = element.defaultValue;
	   	element.style.color='#2A2B2B';
     }
   }
	
	
	//onFocus="setbg('red')" onBlur="setbg('white')"
	
	
	function popup(url) {
	var x = screen.width
	var y = screen.height
	x = x-800;
	y = y-600;
	x = x/2;
	y = y/2;
	var href = url;
	var popup = window.open(href,'','width = 800,height = 600');
	popup.moveTo(x,y);
	}