/*********************************************************

	Javascript Function Library
	
**********************************************************/

function pop_up_win( _source, _name, _width, _height, _left, _top, _locat, _menu, _resize, _scroll, _status, _title, _tool ){
	
	if( _width == undefined ){	_width = 640; }
	if( _height == undefined ){	_height = 480; }
	if( _left == undefined ){	_left = 20; }
	if( _top == undefined ){	_top = 20; }
	if( _scroll == undefined ){	_scroll = 1; }
	
	window.open( _source, _name,	'height=' + _height +
									',width=' + _width +
									',left=' + _left +
									',top=' + _top +
									',location=' + _locat +
									',menubar=' + _menu +
									',resizable=' + _resize +
									',scrollbars=' + _scroll +
									',status=' + _status +
									',titlebar=' + _title +
									',toolbar=' + _tool );

	return false;
	
}

function print_window( _source ){

	pop_up_win( _source, 'print_win', 800, 600, 20, 20, 0, 1, 1, 1, 0, 1, 1 );
	
	return false;

}