function ShowImage(url, path, file, width, height) {
    config='toolbar=no,location=no,directories=no,status=no,menubar=no,width=' + (width + 60) +',height=' + (height + 150) + ',';
    config += 'scrollbars=no,resizable=yes';
	
    var image = window.open(url + "/scripts/image.phtml?path=" + path + "&file=" + file, "image", config);	
}

