// No Copyright; Take me. Part of the ever sharing, ever caring Profit Tier Marketing Network. Kiss, kiss.
// See more at  http://profittier.com?image_fixer

// Replaces broken images with 'coming soon'
function fixBrokenImages(w, h) {
	setTimeout('actualFixBrokenImages(60, 90);', 4000);
}

function actualFixBrokenImages(w, h) {
	for (var a=0; a < document.images.length; a++)
		if ((typeof(document.images[a].fileSize) != 'undefined' && document.images[a].fileSize == -1) 
			|| (typeof(document.images[a].naturalWidth) != 'undefined' && document.images[a].naturalWidth == 0)) {

			// Not for members.commission monster
			if (document.images[a].src.indexOf('http:\/\/members') == -1) {
				document.images[a].src = 'http://www.dvdboxset.com.au/i/no_image.jpg';
			
				if (w) document.images[a].width = w;
				if (h) document.images[a].height = h; // h
			} 
			// debug else { alert('No can do ' + document.images[a].src); }
		}
			
	// Version 2 - Removes no image if missing and replaces with <div org.sameSize></div>
	// var comingSoonImage = '/i/no_image.jpg';
	// comingSoonInterval = setInteval('if (comingSoonImage = '/images/no_image.jpg';
}


