//
// "Beauty by design"
// Copyright © 2007 Verburgh J. - All righs reserved.
//

function go( url, target, options ) {
	if( !target ) { target = '_blank'; }
	if( options.length > 0 ){
		if ( options == 'handle_referer' ) {
			var referer = unescape( url );
			url = referer.replace( 'referer', window.location );
		}
		options = '';
	}
	var gone = window.open( url, target, options );
	try { gone.focus(); } catch( e ) {}
}

function img(img, options) {
	if (options == "640") options = ",width=640,height=480";
	if (options == "800") options = ",width=800,height=600";
	if (options == "467700") options = ",width=467,height=700";
	if (options == "1024680") options = ",width=1024,height=680";
	if (options == "1024768") options = ",width=1024,height=768";
	go('/images/show.html?' + img, "", "location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=0" + options);
}