/*

	Basic Scripts
	
*/
function opWin(src, width, height) {
//	alert("should open: "+src+", width: "+width+", height: "+height)
//	window.open(src, src, "status,resizable,height="+height+",width="+width+"");
	winName = "popup";
	features= 'status=yes,scrollbars=yes,resizable=yes,width='+width+',height='+height;
	window.open(src,winName,features);
}



function fixm( inp ) {
return inp.replace( "#" , "@" ).replace( "," , "." );
}
function listm( inp ) {
document.write( "<a href='" + "m4ilto:".replace( "4" , "a" ) + fixm( inp ) + "'>" + fixm( inp ) + "</a>" );
}
