/* =========================================================================

JavaScript Source File -- Created with SAPIEN Technologies PrimalScript 4.0

NAME: 

AUTHOR: Atcom , Atcom
DATE  : 1/19/2007

COMMENT: 

============================================================================ */

function sendUrl(){
		var loc=document.location.href;
		loc = replaceAll(loc, "&", "%26");
		var msg="Thenamaris Ships Management Inc.";
		msg = replaceAll(msg, "&", "%26");
		window.location="mailto:?subject="+msg+"&body="+loc;
	}
function replaceAll( str, from, to ) {
    var idx = str.indexOf( from );
    while ( idx > -1 ) {
        str = str.replace( from, to ); 
        idx = str.indexOf( from );
    }
return str;
}