function swapImages( id1, id2 ){
	
	img1 = document.getElementById( id1 );
	img2 = document.getElementById( id2 );
	
	tmp = img1.src.split( 'id=');
	id1 = tmp[1];
	tmp = img2.src.split( 'id=' );
	id2 = tmp[1];
	
	src1 = '/file.php?cmd=view&type=image&img_size=predefined&width=280&height=180&id=' + id2;
	src2 = '/file.php?cmd=view&type=image&img_size=predefined&height=88&width=142&id=' + id1;
	
	img1.src = src1;
	img2.src = src2;
}

function enlarge( id ){
	
	url = document.getElementById( id ).src.split( 'id=' );
	id = url[1];
	
	img_popup( id );
}

function img_popup( file_id ){
	wUrl = '/image_resizer.php?id=' + file_id;
	wName = '_blank';
	wParam = 'width=300,height=300,resizable=1';
	window.open( wUrl, wName, wParam );
}