 function CalculateBytes(bytes)

 {

 	window.open('./calculatebytes.php?bytes='+bytes, 'Calculate', 'height=50,width=375');

 }

 

 function ShowVote(id)

 {

 	window.open('./rate.php?id='+id, 'Rate', 'height=210,width=190');

 }

 

  function ShowDetail(id)

 {

 	window.open('./show.php?id='+id, 'Rate', 'height=500,width=550');

 }
 
  function mOver(cell)
 {
   	cell.bgColor      = '#FFCC33';
   	cell.style.cursor = 'hand';
 }
 
 function mOut(cell)
 {
	cell.bgColor      = '#DDDDDD';
	cell.style.cursor = 'normal';
 }
 
 function mClick(url)
 {
 	location.href = url;
 }
 
 function SelectAuthor(id)
 {
 	window.open('selectauthor.php?id='+id, 'Author', 'height=390,width=450');
 }
 
 function SelectCustomer(id)
 {
 	window.open('selectcustomer.php?id='+id, 'Customer', 'height=390,width=450');
 }
 
 function CalculateBytes(bytes)
 {
 	window.open('./../calculatebytes.php?bytes='+bytes, 'Author', 'height=50,width=375');
 }
 
 function CorrectPrice(feld)
 {
 	var newValue = feld.value.replace(/,/, '.');
	feld.value = newValue;
 }
 
 function ShowNewsletterMembers(id)
 {
 	window.open('./news-letter.php?action=show&list='+id, 'Mitglieder', 'height=400,width=300');
 }