		// POP UP A PRE-FORMATTED EMAIL MESSAGE WINDOW
		function popupMessage() {
		
		    // SET MESSAGE VALUES
		    var to = "info@RioPla.com"; 
		    var cc = "x"; 
		    var bcc = "x"; 
		    var subject = "Contacto desde RioPla.com"; 
		    var body = " ";
		
		    // BUILD MAIL MESSAGE COMPONENTS 
		    var doc = "mailto:" + to + 
			"&subject=" + escape(subject) + 
			"&body=" + escape(body); 
		
		    // POP UP EMAIL MESSAGE WINDOW
		    window.location = doc; 
		}
