// +----------------------------------------------------------------------
// | This is a part of Kaqoo-2 project
// +----------------------------------------------------------------------
// | Copyright (C) 2005 by Alan Skelton http://kaqoo.com
// +----------------------------------------------------------------------
//

function showImage(img) {
    w = window.open('', img, 
        'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,width=500,height=500');
    w.document.write('<html><body style="margin:0px;padding:0px;text-align:center"><table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%"><tr valign="middle"><td align="center"><a href="#" onClick="window.close();return false"><img src="' + img + '" border="0"/></a></td></tr></table></body></html>');
    w.document.close();
    return false;
};

function goUploader(item_id) {
    window.open('upload_images.php?item_id=' + item_id, '',
        'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,width=400,height=400');
};
