var tmpimg = new Array();

function init() {
	preloadImages();
}

function preloadImages() {
	tel = 0;
	for(i = 0; i < document.all.length; i++){
		if (document.all[i].tagName == 'IMG') {
			tmpimg[tel] = new Image();
			tmpimg[tel].src = document.all[i].src;
			tel = tel + 1;
		}
		if (document.all[i].tagName == 'TD' || document.all[i].tagName == 'TABLE') {
			if (document.all[i].background) {
				tmpimg[tel] = new Image;
				tmpimg[tel].src = document.all[i].background;
				tel = tel + 1;
			}
		}
	}
}

function CMSPopUp(url, wi, he, winm) {
	if (winm == 0) {
		window.open(url, '', 'toolbar=0,location=0,directories=0,menubar=0,scrollbars=0,resizable=no,width=' + wi + ',height=' + he);
	} else {
		window.open(url, '', 'toolbar=1,location=1,directories=1,menubar=1,scrollbars=1,resizable=yes,width=' + (wi + 16) + ',height=' + he);
	}
}

function changeTD(p_id){
	document.all('showmachine').innerHTML=document.all('cut_'+ p_id).innerHTML;
}

function movepic(img_name,img_src) {
	document[img_name].src=img_src;
}






