
function pop(a,b,w,h){
w2=w+12;
h2=h+30;
window.open(a,b,"width="+w+",height="+h+",outerwidth="+w2+",outerheight="+h2+",top=10,left=10,");
}

function pop2(a,b,w,h){
w2=w+12;
h2=h+30;
window.open(a,b,"width="+w+",height="+h+",outerwidth="+w2+",outerheight="+h2+",top=10,left=10,scrollbars=1");
}

function ShowCase(id_pacient,id_medic){
	w = 765;
	h = 310;
	w2 = w + 12;
	h2 = h + 30;
	ventana = window.open("../photo/case_edit.php?id_pacient=" + id_pacient + "&id_medic=" + id_medic, "Pacient", "width="+w+",height="+h+",outerwidth="+w2+",outerheight="+h2+",top=10,left=10,");
	ventana.focus();
}

