function child(page, w, h)
{ 
	var opts = 'toolbar=no,location=no,scrollbars=no,resizable=yes,status=no,left=10,top=10,width=' + w + ',height=' + h;
	newWindow = window.open(page, 'newWin', opts);
}

function child_sbars(page, w, h)
{ 
	var opts = 'toolbar=no,location=no,scrollbars=yes,left=10,top=10,width=' + w + ',height=' + h;
	newWindow = window.open(page, 'newWin', opts);
}
