var popUpCounter= 0;
var oldWindors;
//alert("existo");
function launch_media(dPath){
	var dWidth = 320;
	var dHeight = 240;
	var leftOffset = (screen.availWidth - dWidth - 10)*.5;
	var topOffset = (screen.availHeight - dHeight - 30)*.5;
	var wArgs = "width="+dWidth+",height="+dHeight+",top="+topOffset+",left="+leftOffset+",scrollbars=no";
	dPath= "mediapop.php?dPath="+dPath+"&dW="+dWidth+"&dH="+dHeight;
	popupItself(dPath,wArgs);
}
function launch_img(dPath){
	var dWidth = 640;
	var dHeight = 490;
	var leftOffset = (screen.availWidth - dWidth - 10)*.5;
	var topOffset = (screen.availHeight - dHeight - 30)*.5;
	var wArgs = "width="+dWidth+",height="+dHeight+",top="+topOffset+",left="+leftOffset+",scrollbars=no";
	dPath= "imgpop.php?dPath="+dPath+"&dW="+dWidth+"&dH="+dHeight;
	popupItself(dPath,wArgs);
}
function popupItself(dPath,wArgs){
	if((oldWindors!=null) && (!oldWindors.closed)){
		oldWindors.close();
	};
	oldWindors = "popUp_"+(popUpCounter++);
	var windors =window.open(dPath,oldWindors,wArgs);
	oldWindors=windors;
	windors.focus();
}