// JavaScript Document
function reportError() {
	alert('ERROR: cannot get info from server.');
}
function showartwork(artwork_id, category_id, depth) {
	//pop up the window...
	var url = depth+'DISPLAY/showartwork.php?id='+artwork_id+'&catid='+category_id
	popup(url)
};
function showartworkdetail(order_nbr, artwork_id, depth) {
	//pop up the window...
	var url = depth+'DISPLAY/showartworkdetail.php?order_nbr='+order_nbr+'&artwork_id='+artwork_id
	popup(url)
};
function popup(url) {
	var newwindow;
	newwindow=window.open(url,'name','height=620,width=550');
	if (window.focus) {newwindow.focus()}
}
