/*---------------------------------------------------------------------------*/



function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


function open_audio(theURL) { //v2.0
  window.open(theURL,'audio','menubar=no,scrollbars=no,resizable=yes,width=750,height=150');
}

function open_flash(theURL) { //v2.0
  window.open(theURL + '&width=430&height=346','flash','menubar=no,scrollbars=no,resizable=yes,width=750,height=521');
}

function open_photo(theURL) { //v2.0
  window.open(theURL,'photoToday','menubar=no,scrollbars=no,resizable=yes,width=900,height=600');
}


function open_radio(theURL) { //v2.0
  window.open('http://www.live365.com/cgi-bin/mini.cgi?membername=ugpulseradio&site=pro','ugpulseradio','menubar=no,scrollbars=no,resizable=no,width=470,height=330');
}

/*---------------------------------------------------------------------------*/

function searchSubmit(){
	if ( document.searchForm.Search1.value == "embooziSearch" ){
		window.location = "http://freefufu.com/search/SearchResults.aspx?q=" + document.searchForm.searchField1.value;

	}else if( document.searchForm.Search1.value == "Photos" ){
		window.location = "http://freefufu.com/photos/" + document.searchForm.searchField1.value;

	}else if( document.searchForm.Search1.value == "Blog" ){
		window.location = "http://freefufu.com/blogs/" + document.searchForm.searchField1.value;


	}else if( document.searchForm.Search1.value == "exactSearch" ){
		window.location = "http://www.ugpulse.com/search.asp?ugaSrch=" + document.searchForm.searchField1.value;

	}
}



function truncateStr(str, limit) {

var bits, i;


bits = str.split('');

if (bits.length > limit) {

for (i = bits.length - 1; i > -1; --i) {

if (i > limit) {

bits.length = i;

}

else if (' ' === bits[i]) {

bits.length = i;

break;

}

}

bits.push('...');

}
return bits.join('');
}
