// JavaScript Documentfunction newImage(arg) {	if (document.images) {		rslt = new Image();		rslt.src = arg;		return rslt;	}}function changeImages() {	if (document.images && (preloadFlag == true)) {		for (var i=0; i<changeImages.arguments.length; i+=2) {			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];		}	}}// -->// item detail popupfunction openWindow(URL) {		window.open(URL,'_blank','width=465px,height=530px,top=150px,left=200px,toolbar=no,status=no,menubar=no,directories=no,resizable=no,scrollbars=no,location=yes,chrome=yes,centerscreen');}// report popupfunction openThis(URL) {		window.open(URL,'_blank','width=470px,height=600px,top=100px,left=300px,toolbar=no,status=no,menubar=no,directories=no,resizable=no,scrollbars=no,location=no,chrome=yes,centerscreen');}// blog popupfunction openBlog(URL) {		window.open(URL,'_blank','width=765px,height=665px,top=50px,left=100px,toolbar=no,status=no,menubar=no,directories=no,resizable=yes,scrollbars=yes,location=no,chrome=yes,centerscreen');}// buy now popupfunction buyNow() {		window.open("items/buy_now.htm","_blank","width=465px,height=530px,top=150px,left=665px,toolbar=no,status=no,menubar=no,directories=no,resizable=no,scrollbars=no,location=yes,chrome=yes,centerscreen");}function popNow() {		window.open("buy_now.htm","_blank","width=465px,height=530px,top=150px,left=665px,toolbar=no,status=no,menubar=no,directories=no,resizable=no,scrollbars=no,location=yes,chrome=yes,centerscreen");}// open site and close bookmarked popup parentfunction fromBooked() {		window.open("http://www.gemscapes.com","_blank","width=1280px,height=800px,top=0px,left=0px,toolbar=yes,status=yes,menubar=yes,directories=yes,resizable=yes,scrollbars=yes,location=yes,chrome=yes,centerscreen");setTimeout("window.close()",5000);window.close();}function bookmark(url,title){  if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {  window.external.AddFavorite(url,title);  } else if (navigator.appName == "Netscape") {    window.sidebar.addPanel(title,url,"");  } else {    alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark");  }}function bookmarkz(url,title){if (window.sidebar) // firefox    window.sidebar.addPanel(title,url,"");else if(window.opera && window.print){ // opera    var elem = document.createElement('a');    elem.setAttribute('href',url);    elem.setAttribute('title',title);    elem.setAttribute('rel','sidebar');    elem.click();}else if(document.all)// ie    window.external.AddFavorite(url,title);}