function popUp(sitio, ancho, alto){
	ancho = 592;
	alto = 400;
	ancho = ancho < 10 ? 400 : ancho;
	alto = alto < 10 ? 300 : alto;

	Shadowbox.open({
        player:     "iframe",
        title: 'CIG77 Studios',
        content:    sitio,
        height:     alto,
        width:      ancho
    });

	window.location = '#portfolio:' + sitio.replace('player.php?id=', '');
}

$(function()
{
	if(window.location.hash != '')
	{
		var hash = window.location.hash;
		hash = hash.replace('#', '');
		var parts = hash.split(':');
		switch(parts[0])
		{
			case 'portfolio':
				setTimeout("popUp('player.php?id=" + parts[1] + "', 360, 283)", 500);
				//popUp('player.php?id=' + parts[1], 360, 283);
				break;
		}
	}
});