/***********************************************************************************
*
*	Desarrollado por Gelioss Online Solutions - www.gelioss.com
* 
* v 1.1 - Nov 07
*
***********************************************************************************/

function LoadImage(imagepath) {
	var marco = document.getElementById('ifmultimedia');
	if(marco!=null){
		var marco = getIFrameDocument("ifmultimedia");
		marco.location="load_image.php?is=" + imagepath;
	} else {
		//alert("No se encuentra ");
		return false;
	}
	return true;	
}

function LoadVideo(videopath) {
	var marco = document.getElementById('ifmultimedia');
	if(marco!=null){
		var marco = getIFrameDocument("ifmultimedia");
		marco.location="load_video.php?is=" + videopath;
	} else {
		//alert("No se encuentra ");
		return false;
	}
	return true;	
}

function getIFrameDocument(aID){
	var rv = null;

	if (document.getElementById(aID).contentDocument){
		rv = document.getElementById(aID).contentDocument;
	} else {
		// IE
		rv = document.frames[aID].document;
	}

	return rv;
}
