function CreateBookmarkLink(){title="Bondage Here: Top Movies BDSM Galleries and Extreme Porn!";url="http://bondage-here.com";if(window.sidebar){window.sidebar.addPanel(title,url,"");}else if(window.external){window.external.AddFavorite(url,title);}
else if(window.opera&&window.print){return true;}}

function createXMLHttp() {
	var xmlHttp;
	if(window.ActiveXObject) {
		try { xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { alert("ERROR"); }
	} else {
		try { xmlHttp = new XMLHttpRequest(); } catch(e) { alert("ERROR"); }
	}
	if(!xmlHttp) alert("Ошибка создания объекта XMLHttpRequest.");
	else return xmlHttp;
	}

function getMore(thumbId) {
	var thumbPath = document.getElementById(thumbId).src;
   var oXmlHttp = createXMLHttp();
   oXmlHttp.open("GET","new.php?get_thumb=" + thumbPath,true);
   oXmlHttp.onreadystatechange = function() {
    if(oXmlHttp.readyState == 4) {
     if(oXmlHttp.status == 200) {
	   document.getElementById(thumbId).src = oXmlHttp.responseText;
     }
    } else {
			//document.getElementById('fax').value = 'Please, wait...'; 
		}
   };
   oXmlHttp.send(null);   
}
