// abro los movies del porfolio en un pop up
function open_window_porfolio(theURL)
{ 
	popup = window.open(theURL,'Qrenders','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1,width=400,height=355');
	popup.moveTo((screen.width - 400) / 2,(screen.height - 355) / 3);
	popup.focus();
}