function countprice()
{
  document.fastbuy.totalamount.value = document.fastbuy.price1.value;
  document.fastbuy.amount.value = document.fastbuy.price1.value;
}
function checkdata()
{
	document.fastbuy.custom.value=ip;
    document.fastbuy.item_name.value = "funingame.com - "+document.fastbuy.price1.options[document.fastbuy.price1.selectedIndex].text+" - "+document.fastbuy.server.value+" - Character:"+document.fastbuy.character.value+" - ip:"+document.fastbuy.custom.value+" - Telephone:"+document.fastbuy.telephone.value; 
	document.fastbuy.business.value="pay.funingame@hotmail.com"; 

	if (document.fastbuy.character.value == "" )
	{
		alert("Please fill in your character name!");
		document.fastbuy.character.focus();
		return false;
	}
	else if(document.fastbuy.telephone.value =="")
	{
		alert("Please fill in your telephone number!");
		document.fastbuy.telephone.focus();
		return false;
	}
	return true;
}
function addfavorite()
{
if (document.all)
{
window.external.addFavorite('http://www.funingame.com','Fun in Game');
}
else if (window.sidebar)
{
window.sidebar.addPanel('Fun in Game', 'http://www.funingame.com', "");
}
}
function addloadEvent(func){
  var oldonload = window.onload;
  if (typeof oldonload !='function'){
    window.onload=func; 
  }else{
    window.onload=function(){
    oldonload();
    func();
    }
  }
}
addloadEvent(countprice); 
