﻿
function popupImage(titre,adresse,largeur,hauteur) {

	var fenetre = window.open('','test','width='+largeur+', height='+hauteur+', top='+Math.round(screen.height/2-hauteur/2)+', left='+Math.round(screen.width/2-largeur/2));

	fenetre.document.open();

	var src="<html><head><title>"+titre+"</title>"

	+'<style type="text/css">body{margin:0;}</style>'

	+"</head><body>"

	+"<img src='"+adresse+"'/>"

	+"</body></html>";

	fenetre.document.write(src);

	fenetre.document.close();

}



function popupImageScroll(titre,adresse,largeur,hauteur) {

	var fenetre = window.open('','test','resizable=yes, scrollbars=yes, width='+largeur+', height='+hauteur+', top='+Math.round(screen.height/2-hauteur/2)+', left='+Math.round(screen.width/2-largeur/2));

	fenetre.document.open();

	var src="<html><head><title>"+titre+"</title>"

	+'<style type="text/css">body{margin:0;}</style>'

	+"</head><body>"

	+"<img src='"+adresse+"'/>"

	+"</body></html>";

	fenetre.document.write(src);

	fenetre.document.close();

}



function popupApplet(titre,adresse,largeur,hauteur) {

	var fenetre = window.open('','test','width='+largeur+', height='+hauteur+', top='+Math.round(screen.height/2-hauteur/2)+', left='+Math.round(screen.width/2-largeur/2));

	fenetre.document.open();

	var src="<html><head><title>"+titre+"</title>"

	+'<style type="text/css">body{margin:0;}</style>'

	+"</head><body>"

	+'<applet code="'+adresse+'" width="'+largeur+'" height="'+hauteur+'"></applet>'

	+"</body></html>";

	fenetre.document.write(src);

	fenetre.document.close();

}



function popupAppletArchive(titre,archive,code,largeur,hauteur) {

	var fenetre = window.open('','test','width='+largeur+', height='+hauteur+', top='+Math.round(screen.height/2-hauteur/2)+', left='+Math.round(screen.width/2-largeur/2));

	fenetre.document.open();

	var src="<html><head><title>"+titre+"</title>"

	+'<style type="text/css">body{margin:0;}</style>'

	+"</head><body>"

	+'<applet archive="'+archive+'" code="'+code+'" width="'+largeur+'" height="'+hauteur+'"></applet>'

	+"</body></html>";

	fenetre.document.write(src);

	fenetre.document.close();

}



function popupSwf(titre,adresse,largeur,hauteur,couleur) {

	var fenetre = window.open('','test','width='+largeur+', height='+hauteur+', top='+Math.round(screen.height/2-hauteur/2)+', left='+Math.round(screen.width/2-largeur/2));

	fenetre.document.open();

	var src="<html><head><title>"+titre+"</title>"

	+'<style type="text/css">body{margin:0;}</style>'

	+"</head><body>"

	+'<object data="'+adresse+'" type="application/x-shockwave-flash" width="'+largeur+'" height="'+hauteur+'" >'

	+'<param name="movie" value="'+adresse+'" /><param name="bgcolor" value="'+couleur+'" /></object>'

	+"</body></html>";

	fenetre.document.write(src);

	fenetre.document.close();

}

