// JavaScript Document
Shadowbox.init({
        // let's skip the automatic setup because we don't have any
        // properly configured link elements on the page
        skipSetup: true,
        // include the html player because we want to display some html content
		overlayColor: "#FFF",
		overlayOpacity: 0.5,
        players: ["iframe"]
    });


//sid = scene id, wid = website id
function show_player(sid, wid, width, height) {
	    var obj = {
        	content:    "scene_details.php?sid="+sid+"&wid="+wid+"&width="+width+"&height="+height,
        	player:     "iframe",
        	height:     height,
        	width:      width

    };
    Shadowbox.open(obj);

}

function change_img(pic) {
	$("#img").attr("src" ,pic);
}

function tBox(width, height, url) {
	Shadowbox.open({
				   player: 'iframe',
				   title: "",
				   content: url,
				   width: width,
				   height: height
	});
}
function dialer_check() {
	setInterval("check_user()", 1000);
}
function check_user() {
	
}



			   