function gebi (uid){
	return document.getElementById(uid);
}

function open_vip_game (param,width,height){
	window_width = parseInt(width)+220;
	
	window_height = parseInt(height)+380;

  var params = 'width='+window_width+', height='+window_height+', status=no, toolbar=no, menubar=no,resizable=yes, scrollbars=no,titlebar=no, left=30,top=30';
  window.open(param,'',params,true);
  return false;
}	

function open_game(param,width,height){
	window_width = parseInt(width)+220;
	
	

		window_height = parseInt(height)+112;

  var params = 'width='+window_width+', height='+window_height+', status=no, toolbar=no, menubar=no,resizable=yes, scrollbars=no,titlebar=no, left=30,top=30';
  window.open(param,params,params,true);
  return false;
}	

function show_thumbs (thumbid){

	gebi('top10img').src = thumbid;
}
function hide_thumbs (thumbsid){

	gebi(thumbsid).style.display = "none";
}
function open_box (selectbox_id){
	sel = gebi(selectbox_id);
	sel.click();
}

function show_watched(ElementId){
	gebi(ElementId).style.display='block';
}

function hide_watched(ElementId){
	gebi(ElementId).style.display='none';
}




