<!--
function Zoom(TITLE, ID, XID){
		url = 'upload/view.php?title=' + TITLE +'&img=' + XID + '_' + ID + '.jpg';
		LeftPosition = (screen.width) ? (screen.width-720)/2 : 0;
		TopPosition = (screen.height) ? (screen.height-540)/2 : 0;
		settings = 'height=540,width=720,top='+TopPosition+',left='+LeftPosition+',scrollbars=0,noresize,status=1';
		win = window.open(url,"zoom",settings)
}

function Print(oferta){
		url = 'print.php?oferta=' + oferta;
		LeftPosition = (screen.width) ? (screen.width-720)/2 : 0;
		TopPosition = (screen.height) ? (screen.height-540)/2 : 0;
		settings = 'height=540,width=720,top='+TopPosition+',left='+LeftPosition+',scrollbars=0,noresize,status=1';
		win = window.open(url,"pr",settings)
}
//-->


