/*############################################################################*/
/*								ZOOM
/*############################################################################*/
function zoom(ID,w,h){
	var popup = window.open("/secoes/zoom.php?src=" + ID, "zoom","width="+ w +",height="+ h +",scrollbars=0,status=0,toolbar=no,top=0,left=0");
	popup.focus();
}
function view(ID,w,h){
	var popup_view = window.open("/secoes/preview.php/" + ID, "galeria","width="+ w +",height="+ h +",scrollbars=0,status=0,toolbar=no,top=0,left=0");
	popup_view.focus();
}
function letra(ID){
	var w = 330;
	var h = 400;
	var popup_letra = window.open("/secoes/letra.php/" + ID, "letra","width="+ w +",height="+ h +",scrollbars=yes,status=0,toolbar=no,top=0,left=0");
	popup_letra.focus();
}
function clip(){
	var w = 450;
	var h = 370;
	var popup_letra = window.open("/upload/html/clip.htm", "Clip","width="+ w +",height="+ h +",scrollbars=0,statusbars=0,status=0,toolbar=no,top=0,left=0");
	popup_letra.focus();
}
function clip2(){
	var w = 450;
	var h = 370;
	var popup_letra = window.open("/upload/html/clip2.htm", "Clip2","width="+ w +",height="+ h +",scrollbars=0,statusbars=0,status=0,toolbar=no,top=0,left=0");
	popup_letra.focus();
}
/*############################################################################*/
/*						BROWSER FRAME CONTROL - CHIELD
/*############################################################################*/
function callbfResize()
{
	//SET CONTROL HEIGHT
	parent.bfResize(document.body.scrollHeight);
}
function initbfResize()
{
	//HIDE CONTROL
	parent.bfResize(0);
}
/*############################################################################*/
/*						BROWSER FRAME CONTROL - MAIN
/*############################################################################*/
function bfResize(Value)
{
	//FORCE FRAME MODE
	if (document.getElementById("browserFrame") == null)
	{
		window.location = "/?url=" + window.location;
		return false;
	}
	//ADJUST HEIGHT
	var minHeight = 396;
	if (Value < minHeight && Value > 0)
		Value = minHeight;
	//SET VALUE
	document.getElementById("browserFrame").height = Value;
}