var SWF_REFERENCE;

function PopUpDetalle(p_url, width, height) {
	var url = p_url;
	var winName = Math.round(9999*Math.random()) + new Date().getTime();
	
	var left = 50; // + openedWindowsCount*20;
	var top = 50; //+ openedWindowsCount*20;
	var width = width; //640;
	var height = height; //550;
	
	var popUpWin = open(url, winName, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');

	if (!popUpWin) {
	 	//getSwf("HOME").openWindowFromSwf(url);
		SWF_REFERENCE.openWindowFromSwf(url);
	}

}

function getSwf(id) {
	if (navigator.appName.indexOf("Microsoft") != -1) {
		return window[id];
	} 
	else {
		return document[id];
	}
}

