function loadImg(reload_div,imgSrc,imgWidth,imgHeight){
	var url = '/typo3conf/ext/netvajax/ajaxsrv.php';
	
	new Ajax.Updater(reload_div, url, {
		method: 'post',
		parameters: {
			handler:'tx_netvsvggallery_ajax_loadImg',
			img_src:imgSrc,
			img_width:imgWidth,
			img_height:imgHeight
		}
	});
}