//ABRIR VENTANA
function cmsOpenPopup(href, name, width, height, x, y, menu, status, scroll, loc, resize, title, toolbar)
{
		
	var attributes = '';
		if (width.length > 0) attributes = attributes + ',width=' + width;
		if (height.length > 0) attributes = attributes + ',height=' + height;
		if (x.length > 0) attributes = attributes + ',screenx=' + x;
		if (x.length > 0) attributes = attributes + ',left=' + x;
		if (y.length > 0) attributes = attributes + ',screeny=' + y;
		if (y.length > 0) attributes = attributes + ',top=' + y;
		attributes = attributes + ',menubar=' + (menu==1?'yes':'no');
		attributes = attributes + ',status=' + (status==1?'yes':'no');
		attributes = attributes + ',scrollbars=' + (scroll==1?'yes':'no');
		attributes = attributes + ',location=' + (loc==1?'yes':'no');
		attributes = attributes + ',titlebar=' + (title==1?'yes':'no');
		attributes = attributes + ',toolbar=' + (toolbar==1?'yes':'no');
		attributes = attributes + ',resizable=' + (resize==1?'yes':'no');
		attributes = attributes.substring(1,attributes.length);
		var cmsPopup = window.open(href, name, attributes)
}
