/****   File Name:  openwindow.js  ************************************************  
 *    Description:  Opens a new window to the size passed in.
 *		  Used By:	
 *                   
 *        Project:	Reactive Blue - the online avenue for artists and galleries
 *   Date Created:  2005.12.04
 *         Author:  Gene Nagle
 *
 *	Code Copyright © 2005 by Tesla Technologies, All Rights Reserved.
 *
 *     Revision History
 *   Who   		  Date			CodeVersion - Comments
 *
 **********************************************************************************/

function openwindow(id, title, width, height) {
	var attributes = 'menubar=0,';
	attributes += 'resizable=1,';
	attributes += 'status=1,';
	attributes += 'scrollbars=1,';
	attributes += 'width=' + width + ',';
	attributes += 'height=' + height;
	
	var imagewindow = window.open('detail.php?id='+id,'', attributes);

}

