
// MultiMEDIAPopUp 1.0 - Programado por Gerardo Couso (www.gexunion.com) - 17 de Noviembre de 2008 

// Función que abre archivo JPG (480x360) en ventana PopUp 
function ShowImage(url)
{ window.open(url,"ShowImage","menubar=NO, toolbar=NO, scrollbars=NO, status=NO, location=NO, directories=NO, copyhistory=NO, resizable=NO, top=20, left=20, width=490, height=370"); 
} 

// Función que abre archivo JPG (640x480) en ventana PopUp 
function ShowImageMedium(url)
{ window.open(url,"ShowImage","menubar=NO, toolbar=NO, scrollbars=NO, status=NO, location=NO, directories=NO, copyhistory=NO, resizable=NO, top=20, left=20, width=650, height=490"); 
} 

// Función que abre archivo JPG (800x600) en ventana PopUp 
function ShowImageLarge(url)
{ window.open(url,"ShowImage","menubar=NO, toolbar=NO, scrollbars=NO, status=NO, location=NO, directories=NO, copyhistory=NO, resizable=NO, top=20, left=20, width=810, height=610"); 
} 

// Función que abre documento HTML para desplazar archivos JPG (480x360) en ventana PopUp
function SlideShow(url)
{ window.open(url,"SlideShow","menubar=NO, toolbar=NO, scrollbars=NO, status=NO, location=NO, directories=NO, copyhistory=NO, resizable=YES, top=20, left=20, width=490, height=370");  
} 

// Función que abre documento HTML para reproducir archivos WMV (320x240) en ventana PopUp
function WMVPlayer(url)
{ window.open(url,"WMVPlayer","menubar=NO, toolbar=NO, scrollbars=NO, status=NO, location=NO, directories=NO, copyhistory=NO, resizable=YES, top=20, left=20, width=330, height=285");  
} 

// Función que abre documento HTML para reproducir archivos MP3 en ventana PopUp
function MP3Player(url)
{ window.open(url,"MP3Player","menubar=NO, toolbar=NO, scrollbars=NO, status=NO, location=NO, directories=NO, copyhistory=NO, resizable=YES, top=20, left=20, width=480, height=85"); 
} 

// Final de Archivo
