/* altbinz.com Javascript */

function openAltbinzUpload() {
	window.open (
		"/page_altbinzupload.php" ,
		"altbinzUpload" ,
		"toolbar=no , location=no , scrollbars=yes , resizable=yes , status=no , left=500 , top=150 , width=350 , height=80"
	);
}
function closeAltbinzUpload( file ) {
	window.opener.top.document.altbinz.mirror.value = file;
	setTimeout( "window.close()" , 3000 );
}
function delAltbinzMirror( id , mirror_id ) {
	
	if ( window.confirm( "Are you sure that you want to delete this mirror ?" ) ) {
		window.location="/index.php?page=admin_altbinz&edit_id=" + id + "&mirror_id=" + mirror_id + "+&action=delmirror";
	}
}