﻿function popup(vURL,w,h,scroll){

   window.open(vURL,"","toolbar=no,location=no,status=no,menubar=no,width="+ w +",height="+ h +",top=80,left=180,resizable=no,scrollbars="+ scroll +"");

}

function popup2(vURL,w,h,scroll){

   window.open(vURL,"","toolbar=no,location=no,status=no,menubar=no,width="+ w +",height="+ h +",top=100,left=200,resizable=yes,scrollbars="+ scroll +"");

}

//********** SCRIPT PARA ABRIR JANELA JAVASCRIPT ATRAVÉS DE LINK  *****************
function newWindow(bookgif) {
		bookWindow = window.open(bookgif, "bookWin", "width=600,height=400,top=60,left=85,scrollbars=yes,menubar=no,resizable=yes");
		bookWindow.focus();
	}
	function newWindowBlank(bookgif) {
		bookWindow = window.open(bookgif, "bookWin", "scrollbars=yes,menubar=yes,resizable=yes");
		bookWindow.focus();
	}