function openWin(page, variable) {
	var args = '';
	
	if (variable == undefined)
		args = 'resizable=no,height=550,width=550,scrollbars=no';
	else
		args = variable;
	
	var newWin=window.open(page,'newWin',args);
}
