// ********* page control email  **********

function mailpage()
{
mail_str = "mailto:?subject=Telephone Systems";
mail_str += "&body= This was the website and page I thought maybe could be of interest " + location.href;
// or use mail_str += "Page I was looking is at " + location.href;
// or use mail_str += "Page I was looking is at " + top.location.href; 
location.href = mail_str;
}


// End 

// *******  Window  **********
function shortPopUp( url, name, width, height, scrollbars ) { 
	var top  = "20"; 
	var left = "20"; 
 
	if( scrollbars == null ) scrollbars = "0"; 
 
	str  = ""; 
	str += "resizable=1,titlebar=0,menubar=0,"; 
	str += "toolbar=0,location=0,directories=0,status=0,"; 
	str += "scrollbars=" + scrollbars + ","; 
	str += "width=" + width + ","; 
	str += "height=" + height + ","; 
	str += "top=" + top + ","; 
	str += "left=" + left; 
 
	window.open( url, name, str ); 
} 


