/*
----------------------------------------------------------------------
SHEILASKALEIDOSCOPE.COM JS FUNCTIONS - by Emanuele Pelliccione 
----------------------------------------------------------------------
*/

/*
--------------------------------------------------------
INITIALIZATION
--------------------------------------------------------
*/ 

function init() {
	
	if( document.getElementById ) {
		
		if( document.getElementById( "page_contact" ) ) {
		
			mail_addresses();
			
		}
		
	}
	else {
		
		return false;
		
	}
	
}

/*
--------------------------------------------------------
SMILIES
--------------------------------------------------------
*/ 

function dosmile ( smile ) { 

	form = document.getElementById( "commentform" );
	
	form.comment.value = form.comment.value + smile; 
	
}

/*
--------------------------------------------------------
EMAIL ADDRESSES
--------------------------------------------------------
*/ 

function mail_addresses() {

	var mail_info = document.getElementById( "mailinfo" );
    
	if( mail_info ) {
      		
		mail_info.innerHTML = '<a href="mailto:sheilaskaleidoscope' + '@' + 'yahoo' + '.' + 'it">sheilaskaleidoscope' + '@' + 'yahoo' + '.' + 'it</a>';
    
	}
	
}	

window.onload = init;

function show( element ) {

	if( document.getElementById ) {
		
		var tag = document.getElementById( element );
		
		if( tag ) {
			
			if( tag.style.display == "none" ) {
				
				tag.style.display = "block";
					
			}
			else {
				
				tag.style.display = "none";
				
			}
			
		}
		
	}
	
}