function initShadowbox() {
	if(typeof Shadowbox != "undefined")
		Shadowbox.init({
			handleOversize: 'resize',
			language:		'es',
			players:		['img', 'html', 'iframe', 'qt', 'wmp', 'swf', 'flv']
		});
}
function popUpSb(pstrCaption, pstrLink, pintWidth, pintHeight) {
	if(pintWidth==undefined)
		pintWidth=990;
	if(pintHeight==undefined)
		pintHeight=650;
	Shadowbox.open({
		content:    pstrLink,
		player:     "iframe",
		title:      pstrCaption,
		width:		pintWidth,
		height:		pintHeight
	});
}
function popUp(pstrURL,pstrName,pintWidth,pintHeight,pstrAttr) {
//	window.open(pstrURL,pstrName,MakeWindowAttrib(pintWidth,pintHeight,pstrAttr));
	popUpSb('', pstrURL, pintWidth, pintHeight);
}
function jsVisCoreTotalLoader() {
	jsTotalLoader();
}

window.onLoad=jsVisCoreTotalLoader;
initShadowbox();
