
function download(id_partenaire) {
	//myWin2 = open("/download/", "111","width=150,height=100,status=no,toolbar=no,menubar=0,scrollbars=no,resizable=no"); 
	myWin2 = open("/download.php?id_partenaire=" + id_partenaire , "dlpodiomlive","width=150,height=100,status=no,toolbar=no,menubar=0,scrollbars=no,resizable=no"); 
}

/* index */
function openWin(link) {
	var height=0; var width=0;
	if (self.screen) {
	width = screen.width
	height = screen.height
	}
	else if (self.java) {
	var jkit = java.awt.Toolkit.getDefaultToolkit();
	var scrsize = jkit.getScreenSize();
	width = scrsize.width;
	height = scrsize.height;
	}
	var scroll;
	if (width == 800) {
		scroll = "yes"
	}
	else {
		scroll = "no"
	}
	width -= 11;
	height -= 80;
	myWin = open(link, "PodiomLive","width=" + width + ",height=" + height + ",status=no,toolbar=no,menubar=0,scrollbars=" + scroll + ",resizable=no");
}