function show(type,id) {
   window.open('/view_full.php?type='+type+'&id='+id, '', 'width=0,height=0,scrollbars=yes');
}

function viewer(id) {
	var width = 400, height = 400;
	
	window.open('/photo_viewer.php?products_id=' + id, 'viewer', 'left=' + ( screen.width  - width ) / 2 + ',top=' + ( screen.height - height ) / 2 + ',width=400,height=400,scrollbars=yes');
}

function go(u) {
   document.location.href = u;
}
