function popitup(window_url, window_width, window_height, options)
{
	//alert(options);
	newwindow=window.open(window_url,'name','height=' + window_height + ',width=' + window_width + options );
	if (window.focus) {newwindow.focus()}
	return false;
}


