Shadowbox.init({
	skipSetup:	true, 
	language:	"es",
	players:	["img","iframe"]
});

function openImage(pstrImage) {
	Shadowbox.open({
		content:	pstrImage,
		player:     "img"
	});
}

function openPage(pstrTitle, pstrPage, pintSX, pintSY) {
	Shadowbox.open({
		content:	pstrPage,
		player:     "iframe",
		title:      pstrTitle,
		width:     	pintSX,
		height:    	pintSY
	});
}

function jsLoader(pstrPopUp) {
	setTimeout("openImage('"+pstrPopUp+"')",1000);
//	openImage('popup.jpg');
//	openPage('','popup.html',600,600);
}