function imagePopUp(url,w,h) {
	LeftPosition=(screen.width)?(screen.width-w)/2:100;
	TopPosition=(screen.height)?(screen.height-h)/2:100;
	win=window.open('','name','width='+w+',height='+h+',top=' + TopPosition + ',left=' + LeftPosition);
	win.document.write('<html><head><title>Large Image</title></head><script language="javascript">function set_width() {window.moveTo((screen.availWidth-zoomed.width)/2, (screen.availHeight-zoomed.height)/2);window.resizeTo(zoomed.width+45, zoomed.height+85);}</script><body style="padding:0;margin:0;" onload="set_width();"><img src="'+url+'" width="'+w+'" height="'+h+'" alt="Large Image" onClick="window.close();" style="cursor:pointer;"></body></html>');
	win.document.close();
	return false;
}

function select_selected(list, selected_value) {
	var count = list.options.length;
 	for (var current = 0; current < count; current ++) {
	  	if (list.options[current].value == selected_value) {
	   		list.options[current].selected = "1";
	   		break;
	  	}
 	}
}