function MagicCombineToolsVMloadNewPage( el, url ) {
	
	var theEl = $(el);
	var callback = {
		success : function(responseText) {
			theEl.innerHTML = responseText;
			if( Lightbox ) Lightbox.init();
            MagicZoom_stopZooms();
            MagicZoom_findZooms();
            MagicThumb.refresh();
		}
	}
	var opt = {
	    // Use POST
	    method: 'get',
	    // Handle successful response
	    onComplete: callback.success
    }
    
    if(/index2\.php/i.test(url)) {
        url = url.replace(/index2\.php/i,'index.php');
    }
    url += "&magiccombinetools_vm_only_page=1";
    
	new Ajax( url, opt ).request();
}
function MagicCombineToolsRefreshMagicThumb(source, r) {
    target = document.getElementById(source.getAttribute('rel'));
    target.href = source.href;

    title = source.firstChild.getAttribute('alt');
    if(title) target.firstChild.setAttribute('alt', title);
    
    if(r == false) {
        target.firstChild.src = source.getAttribute('rev');
    }
    
    MagicThumb.refresh();
    return r;
}