


function OpenPortImage(image) {
	var modal = new w3tModal();
	modal.width = 500;
	modal.cssClass = 'PortLarge';
	modal.setLocation('tc', 50, 50);
	modal.url = image;
	modal.parameters = '';
	modal.method = 'POST'
	modal.content = true;
	modal.showImage = false;
	//modal.style.backgroundColor = '#EEEEEE';
	modal.show();
}