function print_popup()
{
	var plan = document.getElementById("num_plan").value;
	window.open("/print_plan.php?id="+plan);
}


function affiche_plan_print(id)
{
	var adr = getAdr(id);
	var plan = getImg(id);
	
	//plan
	var obj_plan = document.getElementById("plan");
	
	var img = document.createElement("img");
	img.setAttribute("src", "img/interface/photo/agences/plan/"+plan+".gif");
	obj_plan.appendChild(img);
	
	//photo
	var obj_photo = document.getElementById("photo");
	
	var img = document.createElement("img");
	img.setAttribute("src", "img/interface/photo/agences/"+plan+".jpg");
	obj_photo.appendChild(img);
	
	
	document.getElementById("adresse").innerHTML = adr;
	
	window.print();
	window.close();
}



function print_popup_art(imgNum, pro_id)
{
	window.open("/print_produit.php?id="+pro_id+"&imgNum="+imgNum);
}


function print_n_close()
{
	window.print();
	window.close();
}