
// discoteca flaming star on the client's side...

// pop them windoz up

function popup(address, popup_width, popup_height)
{
	var width  = popup_width;
	var height = popup_height;
	
	if(width == null || height == null)
	{
		width  = 600;
		height = 400;
	}
	
	var popup  = window.open(address, 'name', 'height=' + height + ',width=' + width + ',top=50,left=50,scrollbars,resizable,toolbar,statusbar');
	
	if(popup != false)
	{
		popup.focus();
	}
} 
