function createPlayer(style,pid,action,setting) {
   var params = { allowScriptAccess: "always",allowfullscreen: "true",allownetworking: "all",wmode: "transparent" };
   var atts = { id: "scplayer" };
   var flashvars = { config: 'http://video.supercheats.com/videolist/'+style+'/'+action+'/'+setting }

        var attributes = {
                id:"player1",
                name:"player1"
        }


        swfobject.embedSWF("http://video.supercheats.com/player.swf",
                        pid, "300", "445", "8", null, flashvars, params, atts);
}

function showtab(id,total) {
        x=1; while(x<=total) {
                document.getElementById('tab'+x).style.display = 'none';
                x=x+1;
        }
        document.getElementById('tab'+id).style.display = 'block';

}
function highlightbutton(style,id,total) {
	if (style=='light') {
		bgcon='#D7D7D7';
		bgcoff='#F1F1F1';
	} else {
		bgcon='#333';
                bgcoff='#555';
	}
        x=1; while(x<=total) {
                document.getElementById('button'+x).style.backgroundColor = bgcoff;
                x=x+1;
        }
        document.getElementById('button'+id).style.backgroundColor = bgcon;

}
