function $( elementID ){
	return document.getElementById( elementID );
}
function openPic( sURL, iWidth, iHeight ) {
	iWidth += 15;
	iHeight += 15;
	window.open( sURL,'','Toolbar=0,Location=0,Directories=0,Status=0,Menubar=0,Scrollbars=0,Resizable=0,Width=' + iWidth + ',Height=' + iHeight)
}

var CURRENT_IMAGE = null;
function selectImage( key ){
	if ( !CURRENT_IMAGE ) CURRENT_IMAGE = 0;
	$( 'preview'+CURRENT_IMAGE ).style.borderColor = '#89A5B9';
	$( 'preview'+key ).style.borderColor = '#ffffff';
	$( 'titleImage' ).src = aImages[key].src;
	
	CURRENT_IMAGE = key;
}
