function toggleTextOut(e,txtval) {
	if(e.value=="") e.value = txtval;

}
function toggleTextIn(e,txtval) {
	if(e.value==txtval) e.value="";
	else e.select();
}



$(document).ready(function() {
						   $('a.cadidate-login').click( function(){
									$('.login-field').toggle('fast');								 
								 });
						      $('a.emplo-login').click( function(){
									$('.login-field-emplo').toggle('fast');								 
								 });
						   });

function openContactPopup() {
		var win=window.open('canInbound-Contact-popup.php', 'Feedback', 'height=385,width=380,resizable=yes'); 
		win.focus(); 
		return false;
}