var popup;
function ShowBig(id,w,h){
    	var id = parseInt(id) || 0;
    	var width = parseInt(w) || 0;
    	var height = parseInt(h) || 0;
    	width=width+20;
    	height=height+100;
    	if(popup && !popup.closed){popup.close()}
    	popup=window.open('http://www.vima-org.ru/popup.php?id='+id, '_blank', 'scrollbars=yes,height='+height+',width='+width+',top=100,left=200');
    	return false;
}
